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

40 lines
702 B
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
appdirs,
py,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "rply";
version = "0.7.7";
format = "setuptools";
src = fetchFromGitHub {
owner = "alex";
repo = "rply";
rev = "v${version}";
hash = "sha256-5uINDCX4Jr4bSSwqBjvkS3f5wTMnZvsRGq1DeCw8Y+M=";
};
propagatedBuildInputs = [ appdirs ];
nativeCheckInputs = [
py
pytestCheckHook
];
preCheck = ''
export HOME=$(mktemp -d)
'';
meta = with lib; {
description = "Python Lex/Yacc that works with RPython";
homepage = "https://github.com/alex/rply";
license = licenses.bsd3;
maintainers = with maintainers; [ nixy ];
};
}