From 8d32e6c89b73d77eb80daca765be988e4a61408c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 30 Nov 2025 12:22:10 +0100 Subject: [PATCH] python313Packages.pyprobables: modernize --- pkgs/development/python-modules/pyprobables/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pyprobables/default.nix b/pkgs/development/python-modules/pyprobables/default.nix index d5d63f49ac58..d5982a5825f5 100644 --- a/pkgs/development/python-modules/pyprobables/default.nix +++ b/pkgs/development/python-modules/pyprobables/default.nix @@ -3,7 +3,6 @@ buildPythonPackage, fetchFromGitHub, pytestCheckHook, - pythonOlder, setuptools, }: @@ -12,8 +11,6 @@ buildPythonPackage rec { version = "0.6.2"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "barrust"; repo = "pyprobables"; @@ -30,7 +27,7 @@ buildPythonPackage rec { meta = with lib; { description = "Probabilistic data structures"; homepage = "https://github.com/barrust/pyprobables"; - changelog = "https://github.com/barrust/pyprobables/blob/v${version}/CHANGELOG.md"; + changelog = "https://github.com/barrust/pyprobables/blob/${src.tag}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ fab ]; };