1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-05 23:32:35 +03:00
nixpkgs/pkgs/development/python-modules/heapdict/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
501 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, isPy3k }:
buildPythonPackage rec {
pname = "HeapDict";
2019-10-16 11:43:07 +02:00
version = "1.0.1";
src = fetchPypi {
inherit pname version;
2019-10-16 11:43:07 +02:00
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 ];
};
}