python3Packages.sacn: init at 1.4.6
This commit is contained in:
parent
4fb4b69d9b
commit
73eea3d98d
28
pkgs/development/python-modules/sacn/default.nix
Normal file
28
pkgs/development/python-modules/sacn/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user