My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/heapdict/default.nix

20 lines
501 B

{ lib, buildPythonPackage, fetchPypi, isPy3k }:
buildPythonPackage rec {
pname = "HeapDict";
version = "1.0.1";
src = fetchPypi {
inherit pname 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 ];
};
}