2018-09-18 10:21:26 -07:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, ply, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "PlyPlus";
|
|
|
|
version = "0.7.5";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0g3flgfm3jpb2d8v9z0qmbwca5gxdqr10cs3zvlfhv5cs06ahpnp";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ ply ];
|
|
|
|
|
2019-07-02 07:20:24 -07:00
|
|
|
doCheck = !isPy3k;
|
2018-09-18 10:21:26 -07:00
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/erezsh/plyplus";
|
2018-09-18 10:21:26 -07:00
|
|
|
description = "A general-purpose parser built on top of PLY";
|
|
|
|
maintainers = with lib.maintainers; [ twey ];
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
}
|