blob: 7a14902b42e8ba6b53d4980eeee790c54cf6b0c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "pysdcp";
version = "1";
format = "setuptools";
src = fetchPypi {
pname = "pySDCP";
inherit version;
sha256 = "07396lsn610izaravqc6j5f6m0wjrzgc0d1r9dwqzj15g5zfc7wm";
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pysdcp" ];
meta = {
description = "Python library to control SONY projectors";
homepage = "https://github.com/Galala7/pySDCP";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|