python312Packages.pyroaring: init at 1.0.0
This commit is contained in:
committed by
Gaetan Lepage
parent
f2670dc3d9
commit
a410887802
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user