python313Packages.pyprobables: modernize

This commit is contained in:
Fabian Affolter
2025-11-30 12:22:10 +01:00
committed by GitHub
parent 24924dc663
commit 8d32e6c89b
@@ -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 ];
};