python311Packages.fritzconnection: 1.12.2 -> 1.13.1

Changelog: https://fritzconnection.readthedocs.io/en/1.13.1/sources/version_history.html
This commit is contained in:
Fabian Affolter 2023-08-22 08:15:22 +02:00
parent 30436d55b8
commit de90967c94

View file

@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "fritzconnection";
version = "1.12.2";
version = "1.13.1";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -18,7 +18,7 @@ buildPythonPackage rec {
owner = "kbr";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-e+w3ce6KdvbYzH48XPEQTiBgtjbKWNdQj8ie4yw0rzE=";
hash = "sha256-FTg5LHjti6Srmz1LcPU0bepNzn2tpmdSBM3Y2BzZEms=";
};
propagatedBuildInputs = [
@ -43,6 +43,11 @@ buildPythonPackage rec {
"fritzconnection"
];
disabledTestPaths = [
# Functional tests require network access
"fritzconnection/tests/test_functional.py"
];
meta = with lib; {
description = "Python module to communicate with the AVM Fritz!Box";
homepage = "https://github.com/kbr/fritzconnection";