nixpkgs/pkgs/development/python-modules/parsley/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

25 lines
659 B
Nix

{
buildPythonPackage,
fetchPypi,
lib,
}:
buildPythonPackage rec {
pname = "parsley";
version = "1.3";
src = fetchPypi {
pname = "Parsley";
inherit version;
sha256 = "0hcd41bl07a8sx7nmx12p16xprnblc4phxkawwmmy78n8y6jfi4l";
};
# Tests fail although the package works just fine. Unfortunately
# the tests as run by the upstream CI server travis.org are broken.
doCheck = false;
meta = with lib; {
license = licenses.mit;
homepage = "https://launchpad.net/parsley";
description = "Parser generator library based on OMeta, and other useful parsing tools";
maintainers = with maintainers; [ seppeljordan ];
};
}