python3Packages.fritzconnection: 1.7.1 -> 1.7.2

This commit is contained in:
Fabian Affolter 2021-11-14 20:17:11 +01:00 committed by Jonathan Ringer
parent 422c4e199e
commit 61bb9d5d5d

View file

@ -8,7 +8,8 @@
buildPythonPackage rec {
pname = "fritzconnection";
version = "1.7.1";
version = "1.7.2";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -16,14 +17,20 @@ buildPythonPackage rec {
owner = "kbr";
repo = pname;
rev = version;
sha256 = "sha256-yrkFtvGXkeHD5hp0Fzz3M1hsuSIt6bQriyUy4NagD0U=";
sha256 = "sha256-TT0mc3ID+R5Dhm0xSMpyg68wZR70xJfRfgPkHkvLstA=";
};
propagatedBuildInputs = [ requests ];
propagatedBuildInputs = [
requests
];
checkInputs = [ pytestCheckHook ];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "fritzconnection" ];
pythonImportsCheck = [
"fritzconnection"
];
meta = with lib; {
description = "Python module to communicate with the AVM Fritz!Box";