2018-09-18 18:21:26 +01: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 15:20:24 +01:00
|
|
|
doCheck = !isPy3k;
|
2018-09-18 18:21:26 +01:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/erezsh/plyplus";
|
2018-09-18 18:21:26 +01:00
|
|
|
description = "A general-purpose parser built on top of PLY";
|
|
|
|
maintainers = with lib.maintainers; [ twey ];
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
}
|