blob: 6885f29231928bad71f971366fa2e526dd922082 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "red-black-tree-mod";
version = "1.22";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-OONlKQOiv5Y3nCfCCCygt7kFFYZi3X7wyX9P2TqaqQg=";
};
nativeBuildInputs = [ setuptools ];
# Module has no test
doCheck = false;
pythonImportsCheck = [ "red_black_dict_mod" ];
meta = {
description = "Flexible python implementation of red black trees";
homepage = "https://stromberg.dnsalias.org/~strombrg/red-black-tree-mod/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|