heapdict: init at 1.0.0
This commit is contained in:
parent
478b777674
commit
2e3b9a063a
|
@ -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 {
|
||||
|
||||
|
|
Loading…
Reference in New Issue