nixpkgs/pkgs/development/python-modules/sacn/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
667 B
Nix
Raw Normal View History

2020-10-17 20:45:56 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
2020-10-17 20:45:56 +00:00
}:
buildPythonPackage rec {
pname = "sacn";
2022-12-09 02:28:16 +00:00
version = "1.9.0";
format = "setuptools";
disabled = pythonOlder "3.6";
2020-10-17 20:45:56 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-LimA0I8y1tdjFk244iWvKJj0Rx3OEaYOSIJtirRHh4o=";
2020-10-17 20:45:56 +00:00
};
# no tests
doCheck = false;
pythonImportsCheck = [
"sacn"
];
2020-10-17 20:45:56 +00:00
meta = with lib; {
description = "A simple ANSI E1.31 (aka sACN) module";
2020-10-17 20:45:56 +00:00
homepage = "https://github.com/Hundemeier/sacn";
changelog = "https://github.com/Hundemeier/sacn/releases/tag/v${version}";
2020-10-17 20:45:56 +00:00
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}