7eff6a8aa6
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-pyhomematic/versions
25 lines
670 B
Nix
25 lines
670 B
Nix
{ stdenv, buildPythonPackage, isPy3k, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyhomematic";
|
|
version = "0.1.51";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1cgzyb0bnzh7xy9nz28sncl941rk51ib1liypj27y7iq3g6pjhi7";
|
|
};
|
|
|
|
# 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 ];
|
|
};
|
|
}
|