diff --git a/pkgs/development/python-modules/cached-ipaddress/default.nix b/pkgs/development/python-modules/cached-ipaddress/default.nix index 8843d82df51b..9777541d270b 100644 --- a/pkgs/development/python-modules/cached-ipaddress/default.nix +++ b/pkgs/development/python-modules/cached-ipaddress/default.nix @@ -4,25 +4,23 @@ cython, fetchFromGitHub, poetry-core, + pytest-codspeed, pytest-cov-stub, pytestCheckHook, - pythonOlder, setuptools, propcache, }: buildPythonPackage rec { pname = "cached-ipaddress"; - version = "0.10.0"; + version = "1.0.1"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "bdraco"; repo = "cached-ipaddress"; tag = "v${version}"; - hash = "sha256-g6ffp08SXckCJthGICeuEqZ71XeLklKmz6Ziz/AHBOg="; + hash = "sha256-/bq9RZcC6VDK5JxT1QcAJpWNmioNqOearYc34KsCvHs="; }; build-system = [ @@ -34,6 +32,7 @@ buildPythonPackage rec { dependencies = [ propcache ]; nativeCheckInputs = [ + pytest-codspeed pytest-cov-stub pytestCheckHook ];