about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/heapdict/default.nix
blob: 34c01091ddf25f81fd13327f9a4ab77381702b43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:

buildPythonPackage rec {
  pname = "HeapDict";
  version = "1.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0nhvxyjq6fp6zd7jzmk5x4fg6xhakqx9lhkp5yadzkqn0rlf7ja0";
  };

  doCheck = !isPy3k;

  meta = with stdenv.lib; {
    description = "a heap with decrease-key and increase-key operations.";
    homepage = http://stutzbachenterprises.com;
    license = licenses.bsd3;
    maintainers = with maintainers; [ teh ];
  };
}