blob: 53761eb0a4d096f96324ba35ac0dad6a2dd9a551 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
lib,
fetchPypi,
buildPythonPackage,
ply,
isPy3k,
}:
buildPythonPackage rec {
pname = "plyplus";
version = "0.7.5";
src = fetchPypi {
pname = "PlyPlus";
inherit version;
sha256 = "0g3flgfm3jpb2d8v9z0qmbwca5gxdqr10cs3zvlfhv5cs06ahpnp";
};
propagatedBuildInputs = [ ply ];
doCheck = !isPy3k;
meta = {
homepage = "https://github.com/erezsh/plyplus";
description = "General-purpose parser built on top of PLY";
maintainers = with lib.maintainers; [ twey ];
license = lib.licenses.mit;
};
}
|