Merge pull request #93821 from mweinelt/pyfritzhome

python3Packages.pyfritzhome: init at 0.4.2
This commit is contained in:
Martin Weinelt
2020-08-01 22:09:12 +02:00
committed by GitHub
3 changed files with 37 additions and 1 deletions

View File

@@ -0,0 +1,34 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder
, requests
, nose, mock }:
buildPythonPackage rec {
pname = "pyfritzhome";
version = "0.4.2";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "0ncyv8svw0fhs01ijjkb1gcinb3jpyjvv9xw1bhnf4ri7b27g6ww";
};
propagatedBuildInputs = [
requests
];
checkInputs = [
mock
nose
];
checkPhase = ''
nosetests --with-coverage
'';
meta = with lib; {
description = "Python Library to access AVM FRITZ!Box homeautomation";
homepage = "https://github.com/hthiery/python-fritzhome";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}