depot/third_party/nixpkgs/pkgs/development/python-modules/heapdict/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

26 lines
528 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
isPy3k,
}:
buildPythonPackage rec {
pname = "heapdict";
version = "1.0.1";
src = fetchPypi {
pname = "HeapDict";
inherit version;
sha256 = "8495f57b3e03d8e46d5f1b2cc62ca881aca392fd5cc048dc0aa2e1a6d23ecdb6";
};
doCheck = !isPy3k;
meta = with lib; {
description = "a heap with decrease-key and increase-key operations.";
homepage = "http://stutzbachenterprises.com";
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
};
}