lol

Merge pull request #33862 from dotlambda/pyhomematic

python3Packages.pyhomematic: init at 0.1.38

authored by

Frederik Rietdijk and committed by
GitHub
4d9b5ede 1716bf74

+25
+23
pkgs/development/python-modules/pyhomematic/default.nix
··· 1 + { stdenv, buildPythonPackage, isPy3k, fetchPypi }: 2 + 3 + buildPythonPackage rec { 4 + pname = "pyhomematic"; 5 + version = "0.1.38"; 6 + 7 + disabled = !isPy3k; 8 + 9 + src = fetchPypi { 10 + inherit pname version; 11 + sha256 = "15b09ppn5sn3vpnwfb7gygrvn5v65k3zvahkfx2kqpk1xah0mqbf"; 12 + }; 13 + 14 + # Tests reuire network access 15 + doCheck = false; 16 + 17 + meta = with stdenv.lib; { 18 + description = "Python 3 Interface to interact with Homematic devices"; 19 + homepage = https://github.com/danielperna84/pyhomematic; 20 + license = licenses.mit; 21 + maintainers = with maintainers; [ dotlambda ]; 22 + }; 23 + }
+2
pkgs/top-level/python-packages.nix
··· 6141 6141 6142 6142 pydotplus = callPackage ../development/python-modules/pydotplus { }; 6143 6143 6144 + pyhomematic = callPackage ../development/python-modules/pyhomematic { }; 6145 + 6144 6146 pyphen = callPackage ../development/python-modules/pyphen {}; 6145 6147 6146 6148 pypoppler = buildPythonPackage rec {