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";