Files
nixpkgs/pkgs/development/python-modules/heapdict/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

27 lines
525 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
isPy3k,
}:
buildPythonPackage rec {
pname = "heapdict";
version = "1.0.1";
src = fetchPypi {
pname = "HeapDict";
inherit version;
sha256 = "8495f57b3e03d8e46d5f1b2cc62ca881aca392fd5cc048dc0aa2e1a6d23ecdb6";
};
doCheck = !isPy3k;
meta = with lib; {
description = "Heap with decrease-key and increase-key operations";
homepage = "http://stutzbachenterprises.com";
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
};
}