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