nixpkgs/pkgs/development/python-modules/pyhomematic/default.nix

25 lines
684 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, isPy3k, fetchPypi }:
buildPythonPackage rec {
pname = "pyhomematic";
2020-06-05 18:44:36 +01:00
version = "0.1.67";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
2020-06-05 18:44:36 +01:00
sha256 = "2d18e0059367e9e32d6472023322113fce431bcc72187b4a6eb7402fe5d2794b";
};
# 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 ];
};
}