nixpkgs/pkgs/development/python-modules/pyhomematic/default.nix
2018-07-26 12:43:04 +02:00

25 lines
682 B
Nix

{ stdenv, buildPythonPackage, isPy3k, fetchPypi }:
buildPythonPackage rec {
pname = "pyhomematic";
version = "0.1.46";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0a0ba8de05fc6d60bbb0beec7e808fb231abcb566c3bc17de532f72b18fe2837";
};
# PyPI tarball does not include tests/ directory
# Unreliable timing: https://github.com/danielperna84/pyhomematic/issues/126
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 ];
};
}