mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 19:24:20 +00:00
python311Packages.python-osc: refactor
- use correct build system - enable tests - disable on unsupported Python releases
This commit is contained in:
parent
9d753a0563
commit
b18d438646
@ -1,22 +1,39 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-osc";
|
||||
version = "1.8.3";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-pc4bpWyNgt9Ryz8pRrXdM6cFInkazEuFZOYtKyCtnKo=";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [ "pythonosc" ];
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pythonosc"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Open Sound Control server and client in pure python";
|
||||
homepage = "https://github.com/attwad/python-osc";
|
||||
changelog = "https://github.com/attwad/python-osc/blob/v${version}/CHANGELOG.md";
|
||||
license = licenses.unlicense;
|
||||
maintainers = with maintainers; [ anirrudh ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user