python2Packages.plyplus: init at 0.7.5

This commit is contained in:
James Kay 2018-09-18 18:21:26 +01:00
parent 1d0517ddb3
commit c3668db824
No known key found for this signature in database
GPG Key ID: 76BE7F17BF11AD15
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ lib, fetchPypi, buildPythonPackage, ply, isPy3k }:
buildPythonPackage rec {
pname = "PlyPlus";
version = "0.7.5";
src = fetchPypi {
inherit pname version;
sha256 = "0g3flgfm3jpb2d8v9z0qmbwca5gxdqr10cs3zvlfhv5cs06ahpnp";
};
propagatedBuildInputs = [ ply ];
disabled = 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;
};
}

View File

@ -3024,6 +3024,8 @@ in {
ply = callPackage ../development/python-modules/ply { };
plyplus = callPackage ../development/python-modules/plyplus { };
plyvel = callPackage ../development/python-modules/plyvel { };
osc = callPackage ../development/python-modules/osc { };