587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
22 lines
536 B
Nix
22 lines
536 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 = "A general-purpose parser built on top of PLY";
|
|
maintainers = with lib.maintainers; [ twey ];
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|