mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
32 lines
678 B
Nix
32 lines
678 B
Nix
{ 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;
|
|
};
|
|
|
|
}
|