depot/third_party/nixpkgs/pkgs/development/python-modules/red-black-tree-mod/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

38 lines
733 B
Nix

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