Merge pull request #46845 from Twey/plyplus

python2Packages.plyplus: init at 0.7.5
This commit is contained in:
Samuel Dionne-Riel
2018-11-12 03:31:26 +00:00
committed by GitHub
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

@@ -3032,6 +3032,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 { };