Merge pull request #33862 from dotlambda/pyhomematic

python3Packages.pyhomematic: init at 0.1.38
This commit is contained in:
Frederik Rietdijk 2018-01-29 16:52:32 +00:00 committed by GitHub
commit 4d9b5ede18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, buildPythonPackage, isPy3k, fetchPypi }:
buildPythonPackage rec {
pname = "pyhomematic";
version = "0.1.38";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "15b09ppn5sn3vpnwfb7gygrvn5v65k3zvahkfx2kqpk1xah0mqbf";
};
# Tests reuire network access
doCheck = false;
meta = with stdenv.lib; {
description = "Python 3 Interface to interact with Homematic devices";
homepage = https://github.com/danielperna84/pyhomematic;
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}

View file

@ -6141,6 +6141,8 @@ in {
pydotplus = callPackage ../development/python-modules/pydotplus { };
pyhomematic = callPackage ../development/python-modules/pyhomematic { };
pyphen = callPackage ../development/python-modules/pyphen {};
pypoppler = buildPythonPackage rec {