python312Packages.pyroaring: init at 1.0.0

This commit is contained in:
Pol Dellaiera
2025-04-07 10:06:25 +02:00
committed by Gaetan Lepage
parent f2670dc3d9
commit a410887802
2 changed files with 44 additions and 0 deletions
@@ -0,0 +1,42 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
cython,
setuptools,
hypothesis,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pyroaring";
version = "1.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Ezibenroc";
repo = "PyRoaringBitMap";
tag = version;
hash = "sha256-pnANvqyQ5DpG4NWSgWkAkXvSNLO67nfa97nEz3fYf1Y=";
};
build-system = [
cython
setuptools
];
pythonImportsCheck = [ "pyroaring" ];
nativeCheckInputs = [
hypothesis
pytestCheckHook
];
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}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ drupol ];
};
}
+2
View File
@@ -13098,6 +13098,8 @@ self: super: with self; {
pyro5 = callPackage ../development/python-modules/pyro5 { };
pyroaring = callPackage ../development/python-modules/pyroaring { };
pyrogram = callPackage ../development/python-modules/pyrogram { };
pyroma = callPackage ../development/python-modules/pyroma { };