12 buildPythonPackage rec {
13 pname = "pyfritzhome";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
21 repo = "python-fritzhome";
22 rev = "refs/tags/${version}";
23 hash = "sha256-L+9CjSXJrPmlLif1SYfJr6C76IufUzj9FHSGQO78Vsw=";
26 nativeBuildInputs = [ setuptools ];
28 propagatedBuildInputs = [
33 nativeCheckInputs = [ pytestCheckHook ];
35 pythonImportsCheck = [ "pyfritzhome" ];
38 description = "Python Library to access AVM FRITZ!Box homeautomation";
39 mainProgram = "fritzhome";
40 homepage = "https://github.com/hthiery/python-fritzhome";
41 changelog = "https://github.com/hthiery/python-fritzhome/releases/tag/${version}";
42 license = licenses.mit;
43 maintainers = with maintainers; [ hexa ];