fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
28 lines
547 B
Nix
28 lines
547 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;
|
|
};
|
|
}
|