From bc86c9e2d5dcb96e6569467409d54e0f4d30017b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 18 Aug 2023 00:09:27 +0200 Subject: [PATCH] python311Packages.pyflume: update disabled - add format - adjust inputs --- pkgs/development/python-modules/pyflume/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pyflume/default.nix b/pkgs/development/python-modules/pyflume/default.nix index d8bca567857b..fc0ef714ce99 100644 --- a/pkgs/development/python-modules/pyflume/default.nix +++ b/pkgs/development/python-modules/pyflume/default.nix @@ -5,7 +5,6 @@ , pythonOlder , pyjwt , ratelimit -, pytz , requests , requests-mock }: @@ -13,7 +12,9 @@ buildPythonPackage rec { pname = "pyflume"; version = "0.7.2"; - disabled = pythonOlder "3.7"; + format = "setuptools"; + + disabled = pythonOlder "3.10"; src = fetchFromGitHub { owner = "ChrisMandich"; @@ -25,7 +26,6 @@ buildPythonPackage rec { propagatedBuildInputs = [ pyjwt ratelimit - pytz requests ]; @@ -34,7 +34,9 @@ buildPythonPackage rec { pytestCheckHook ]; - pythonImportsCheck = [ "pyflume" ]; + pythonImportsCheck = [ + "pyflume" + ]; meta = with lib; { description = "Python module to work with Flume sensors";