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