diff --git a/pkgs/development/python-modules/schwifty/default.nix b/pkgs/development/python-modules/schwifty/default.nix index 02a70e00ecec..d94adfdc7ba7 100644 --- a/pkgs/development/python-modules/schwifty/default.nix +++ b/pkgs/development/python-modules/schwifty/default.nix @@ -18,20 +18,19 @@ # tests pytestCheckHook, - pytest-cov, pythonOlder, }: buildPythonPackage rec { pname = "schwifty"; - version = "2024.9.0"; + version = "2024.11.0"; pyproject = true; - disabled = pythonOlder "3.8"; + disabled = pythonOlder "3.9"; src = fetchPypi { inherit pname version; - hash = "sha256-rO6fUCFYfCVPxfd+vvzWL+sMDDqA/qRSPUUTB90E8zA="; + hash = "sha256-0KrtAxaEA7Qz3lFdZj3wlRaUGucBUoUNo6/jwkIlX2o="; }; build-system = [ @@ -50,7 +49,6 @@ buildPythonPackage rec { }; nativeCheckInputs = [ - pytest-cov pytestCheckHook ] ++ lib.flatten (lib.attrValues optional-dependencies);