Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
550 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
isPy3k,
}:
buildPythonPackage rec {
pname = "heapdict";
version = "1.0.1";
format = "setuptools";
src = fetchPypi {
pname = "HeapDict";
inherit version;
sha256 = "8495f57b3e03d8e46d5f1b2cc62ca881aca392fd5cc048dc0aa2e1a6d23ecdb6";
};
doCheck = !isPy3k;
meta = with lib; {
description = "Heap with decrease-key and increase-key operations";
homepage = "http://stutzbachenterprises.com";
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
};
}