2018-05-22 10:08:38 +00:00
|
|
|
{ stdenv, buildPythonPackage, isPy3k, fetchPypi }:
|
2018-01-14 11:31:27 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyhomematic";
|
2018-07-22 10:17:38 +00:00
|
|
|
version = "0.1.46";
|
2018-01-14 11:31:27 +00:00
|
|
|
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2018-05-22 10:08:38 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-22 10:17:38 +00:00
|
|
|
sha256 = "0a0ba8de05fc6d60bbb0beec7e808fb231abcb566c3bc17de532f72b18fe2837";
|
2018-01-14 11:31:27 +00:00
|
|
|
};
|
|
|
|
|
2018-05-22 10:08:38 +00:00
|
|
|
# PyPI tarball does not include tests/ directory
|
2018-03-18 11:55:27 +00:00
|
|
|
# Unreliable timing: https://github.com/danielperna84/pyhomematic/issues/126
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-01-14 11:31:27 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|