python310Packages.sacn: add changelog to meta
- disable on unsupported Python releases
This commit is contained in:
parent
aeae4fa17d
commit
1801680ba2
@ -1,27 +1,32 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy27
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sacn";
|
||||
version = "1.9.0";
|
||||
disabled = isPy27;
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-LimA0I8y1tdjFk244iWvKJj0Rx3OEaYOSIJtirRHh4o=";
|
||||
hash = "sha256-LimA0I8y1tdjFk244iWvKJj0Rx3OEaYOSIJtirRHh4o=";
|
||||
};
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "sacn" ];
|
||||
pythonImportsCheck = [
|
||||
"sacn"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A simple ANSI E1.31 (aka sACN) module for python";
|
||||
description = "A simple ANSI E1.31 (aka sACN) module";
|
||||
homepage = "https://github.com/Hundemeier/sacn";
|
||||
changelog = "https://github.com/Hundemeier/sacn/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user