heapdict: init at 1.0.0

This commit is contained in:
Tom Hunger 2016-11-02 18:49:10 +00:00
parent 478b777674
commit 2e3b9a063a
1 changed files with 16 additions and 0 deletions

View File

@ -5394,6 +5394,22 @@ in {
};
};
heapdict = buildPythonPackage rec {
name = "HeapDict-${version}";
version = "1.0.0";
src = pkgs.fetchurl {
url = "mirror://pypi/H/HeapDict/${name}.tar.gz";
sha256 = "0nhvxyjq6fp6zd7jzmk5x4fg6xhakqx9lhkp5yadzkqn0rlf7ja0";
};
doCheck = !isPy3k;
meta = {
description = "a heap with decrease-key and increase-key operations.";
homepage = http://stutzbachenterprises.com;
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
};
};
distributed = buildPythonPackage rec {