Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / heapdict / default.nix
blob44852a3bf4bde385946b814c1667b91500170314
1 { lib, buildPythonPackage, fetchPypi, isPy3k }:
3 buildPythonPackage rec {
4   pname = "heapdict";
5   version = "1.0.1";
7   src = fetchPypi {
8     pname = "HeapDict";
9     inherit version;
10     sha256 = "8495f57b3e03d8e46d5f1b2cc62ca881aca392fd5cc048dc0aa2e1a6d23ecdb6";
11   };
13   doCheck = !isPy3k;
15   meta = with lib; {
16     description = "a heap with decrease-key and increase-key operations.";
17     homepage = "http://stutzbachenterprises.com";
18     license = licenses.bsd3;
19     maintainers = with maintainers; [ teh ];
20   };