about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pypeg2/default.nix
blob: 092ba9472aa75fdb23f1dd3d8e7da56c0a38c856 (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
29
30
31
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
}:

buildPythonPackage rec {
  version = "2.15.2";
  format = "setuptools";
  pname = "pypeg2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0v8ziaam2r637v94ra4dbjw6jzxz99gs5x4i585kgag1v204yb9b";
  };

  checkPhase = ''
    # The tests assume that test_xmlast does not run before test_pyPEG2.
    python -m unittest pypeg2.test.test_pyPEG2 pypeg2.test.test_xmlast
  '';

  #https://bitbucket.org/fdik/pypeg/issues/36/test-failures-on-py35
  doCheck = !isPy3k;

  meta = with lib; {
    description = "PEG parser interpreter in Python";
    homepage = "http://fdik.org/pyPEG";
    license = licenses.gpl2;
  };

}