mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-11 07:23:40 +00:00
755b915a15
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/'
29 lines
545 B
Nix
29 lines
545 B
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
ply,
|
|
isPy3k,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "plyplus";
|
|
version = "0.7.5";
|
|
|
|
src = fetchPypi {
|
|
pname = "PlyPlus";
|
|
inherit version;
|
|
sha256 = "0g3flgfm3jpb2d8v9z0qmbwca5gxdqr10cs3zvlfhv5cs06ahpnp";
|
|
};
|
|
|
|
propagatedBuildInputs = [ ply ];
|
|
|
|
doCheck = !isPy3k;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/erezsh/plyplus";
|
|
description = "General-purpose parser built on top of PLY";
|
|
maintainers = with lib.maintainers; [ twey ];
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|