about summary refs log tree commit diff
path: root/pkgs/development/python-modules/plyplus/default.nix
blob: c27e110f69af76d741508580b95855da92d00265 (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 = "A general-purpose parser built on top of PLY";
    maintainers = with lib.maintainers; [ twey ];
    license = lib.licenses.mit;
  };
}