mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
Merge pull request #93821 from mweinelt/pyfritzhome
python3Packages.pyfritzhome: init at 0.4.2
This commit is contained in:
commit
93540e9c34
3 changed files with 37 additions and 1 deletions
34
pkgs/development/python-modules/pyfritzhome/default.nix
Normal file
34
pkgs/development/python-modules/pyfritzhome/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -268,7 +268,7 @@
|
|||
"freebox" = ps: with ps; [ aiohttp-cors netdisco zeroconf]; # missing inputs: aiofreepybox
|
||||
"freedns" = ps: with ps; [ ];
|
||||
"fritz" = ps: with ps; [ fritzconnection];
|
||||
"fritzbox" = ps: with ps; [ ]; # missing inputs: pyfritzhome
|
||||
"fritzbox" = ps: with ps; [ pyfritzhome];
|
||||
"fritzbox_callmonitor" = ps: with ps; [ fritzconnection];
|
||||
"fritzbox_netmonitor" = ps: with ps; [ fritzconnection];
|
||||
"fronius" = ps: with ps; [ ]; # missing inputs: pyfronius
|
||||
|
|
|
@ -3845,6 +3845,8 @@ in {
|
|||
|
||||
pyfribidi = callPackage ../development/python-modules/pyfribidi { };
|
||||
|
||||
pyfritzhome = callPackage ../development/python-modules/pyfritzhome { };
|
||||
|
||||
pyftpdlib = callPackage ../development/python-modules/pyftpdlib { };
|
||||
|
||||
filebrowser_safe = callPackage ../development/python-modules/filebrowser_safe { };
|
||||
|
|
Loading…
Reference in a new issue