python3Packages.sacn: init at 1.4.6

This commit is contained in:
Martin Weinelt 2020-10-17 22:45:56 +02:00 committed by Jon
parent 4fb4b69d9b
commit 73eea3d98d
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
}:
buildPythonPackage rec {
pname = "sacn";
version = "1.4.6";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "015wa9nhqgd0kb60bw19g86ga25s9mpvsbqkahi3kw6df6j0wzss";
};
# no tests
doCheck = false;
pythonImportsCheck = [ "sacn" ];
meta = with lib; {
description = "A simple ANSI E1.31 (aka sACN) module for python";
homepage = "https://github.com/Hundemeier/sacn";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}

View file

@ -6311,6 +6311,8 @@ in {
sabyenc = callPackage ../development/python-modules/sabyenc { };
sacn = callPackage ../development/python-modules/sacn { };
sacremoses = callPackage ../development/python-modules/sacremoses { };
safe = callPackage ../development/python-modules/safe { };