blob: fd39cf6b688eb0a5f3b92e80bc56324b42bdcc86 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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 ];
};
}
|