1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 isPy3k,
6}:
7
8buildPythonPackage rec {
9 pname = "heapdict";
10 version = "1.0.1";
11
12 src = fetchPypi {
13 pname = "HeapDict";
14 inherit version;
15 sha256 = "8495f57b3e03d8e46d5f1b2cc62ca881aca392fd5cc048dc0aa2e1a6d23ecdb6";
16 };
17
18 doCheck = !isPy3k;
19
20 meta = with lib; {
21 description = "a heap with decrease-key and increase-key operations.";
22 homepage = "http://stutzbachenterprises.com";
23 license = licenses.bsd3;
24 maintainers = with maintainers; [ teh ];
25 };
26}