python3Packages.pyprobables: 0.6.1 -> 0.6.2 (#466505)

This commit is contained in:
Fabian Affolter
2025-11-30 14:21:32 +00:00
committed by GitHub
@@ -3,22 +3,19 @@
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "pyprobables";
version = "0.6.1";
version = "0.6.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "barrust";
repo = "pyprobables";
tag = "v${version}";
hash = "sha256-yJUYGfy+d+Xfk1DUDvBeWk0EcNPuW4DcUHx3G3jzEdc=";
hash = "sha256-CxxpiYtqoAm81YjL6nTFIk4MnBG+1n3wbnW8u29lQlw=";
};
build-system = [ setuptools ];
@@ -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 ];
};