nixpkgs/pkgs/development/python-modules/pyhomematic/default.nix
2019-01-10 14:26:09 +01:00

25 lines
682 B
Nix

{ stdenv, buildPythonPackage, isPy3k, fetchPypi }:
buildPythonPackage rec {
pname = "pyhomematic";
version = "0.1.54";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "3c27f303e6a424229d2d5133af593c21f7d660bdf19d3d00641fbac08a6992c5";
};
# 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 ];
};
}