From 61bb9d5d5d83aa40a1bac3d66fb54601981f4ea1 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 14 Nov 2021 20:17:11 +0100 Subject: [PATCH] python3Packages.fritzconnection: 1.7.1 -> 1.7.2 --- .../python-modules/fritzconnection/default.nix | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/fritzconnection/default.nix b/pkgs/development/python-modules/fritzconnection/default.nix index 1c4145df14e4..0797d39c3125 100644 --- a/pkgs/development/python-modules/fritzconnection/default.nix +++ b/pkgs/development/python-modules/fritzconnection/default.nix @@ -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";