From 98fd1583a9dfb587e998139480c352d3c1c85795 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 6 Oct 2025 16:46:54 +0200 Subject: [PATCH] python313Packages.cached-ipaddress: 0.10.0 -> 1.0.1 Changelog: https://github.com/bdraco/cached-ipaddress/blob/refs/tags/v1.0.1/CHANGELOG.md --- .../python-modules/cached-ipaddress/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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 ];