python3Packages.pyroaring: 1.0.0 -> 1.0.1

This commit is contained in:
R. Ryantm
2025-05-18 13:06:58 +00:00
parent 63fa397da6
commit 6d24eeac33

View File

@@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "pyroaring";
version = "1.0.0";
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Ezibenroc";
repo = "PyRoaringBitMap";
tag = version;
hash = "sha256-pnANvqyQ5DpG4NWSgWkAkXvSNLO67nfa97nEz3fYf1Y=";
hash = "sha256-Zs/MO1R4iBHDfTRVizMl6KyEWI6k2iDX7jAkBZs7kZE=";
};
build-system = [
@@ -35,7 +35,7 @@ buildPythonPackage rec {
meta = {
description = "Python library for handling efficiently sorted integer sets";
homepage = "https://github.com/Ezibenroc/PyRoaringBitMap";
changelog = "https://github.com/Ezibenroc/PyRoaringBitMap/releases/tag/${version}";
changelog = "https://github.com/Ezibenroc/PyRoaringBitMap/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ drupol ];
};