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