forked from mirrors/nixpkgs
python3Packages.pysdcp: init at 1
This commit is contained in:
parent
f725095581
commit
9d6fbb6b2c
31
pkgs/development/python-modules/pysdcp/default.nix
Normal file
31
pkgs/development/python-modules/pysdcp/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pysdcp";
|
||||
version = "1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "pySDCP";
|
||||
inherit version;
|
||||
sha256 = "07396lsn610izaravqc6j5f6m0wjrzgc0d1r9dwqzj15g5zfc7wm";
|
||||
};
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "pysdcp" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library to control SONY projectors";
|
||||
homepage = "https://github.com/Galala7/pySDCP";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -6805,6 +6805,8 @@ in {
|
|||
|
||||
pyscss = callPackage ../development/python-modules/pyscss { };
|
||||
|
||||
pysdcp = callPackage ../development/python-modules/pysdcp { };
|
||||
|
||||
pysdl2 = callPackage ../development/python-modules/pysdl2 { };
|
||||
|
||||
pysendfile = callPackage ../development/python-modules/pysendfile { };
|
||||
|
|
Loading…
Reference in a new issue