Merge pull request #34790 from dotlambda/pyhomematic

python3Packages.pyhomematic: 0.1.38 -> 0.1.39
This commit is contained in:
Frederik Rietdijk 2018-02-10 08:09:10 +00:00 committed by GitHub
commit 603952d86c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -1,19 +1,19 @@
{ stdenv, buildPythonPackage, isPy3k, fetchPypi }: { stdenv, buildPythonPackage, isPy3k, fetchFromGitHub }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyhomematic"; pname = "pyhomematic";
version = "0.1.38"; version = "0.1.39";
disabled = !isPy3k; disabled = !isPy3k;
src = fetchPypi { # PyPI tarball does not include tests/ directory
inherit pname version; src = fetchFromGitHub {
sha256 = "15b09ppn5sn3vpnwfb7gygrvn5v65k3zvahkfx2kqpk1xah0mqbf"; owner = "danielperna84";
repo = pname;
rev = version;
sha256 = "1g181x2mrhxcaswr6vi2m7if97wv4rf2g2pny60334sciga8njfz";
}; };
# Tests reuire network access
doCheck = false;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Python 3 Interface to interact with Homematic devices"; description = "Python 3 Interface to interact with Homematic devices";
homepage = https://github.com/danielperna84/pyhomematic; homepage = https://github.com/danielperna84/pyhomematic;