2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchPypi,
|
|
|
|
buildPythonPackage,
|
|
|
|
ply,
|
|
|
|
isPy3k,
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
buildPythonPackage rec {
|
2024-04-21 15:54:59 +00:00
|
|
|
pname = "plyplus";
|
2020-04-24 23:36:52 +00:00
|
|
|
version = "0.7.5";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
2024-04-21 15:54:59 +00:00
|
|
|
pname = "PlyPlus";
|
|
|
|
inherit version;
|
2020-04-24 23:36:52 +00:00
|
|
|
sha256 = "0g3flgfm3jpb2d8v9z0qmbwca5gxdqr10cs3zvlfhv5cs06ahpnp";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ ply ];
|
|
|
|
|
|
|
|
doCheck = !isPy3k;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/erezsh/plyplus";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "General-purpose parser built on top of PLY";
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with lib.maintainers; [ twey ];
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
}
|