pythonPackages.pypeg2: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-29 13:52:22 -04:00
parent ff64515579
commit 15b5f85a96
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
2 changed files with 31 additions and 23 deletions

View File

@ -0,0 +1,30 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
}:
buildPythonPackage rec {
version = "2.15.2";
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 stdenv.lib; {
description = "PEG parser interpreter in Python";
homepage = http://fdik.org/pyPEG;
license = licenses.gpl2;
};
}

View File

@ -4441,29 +4441,7 @@ in {
smartypants = callPackage ../development/python-modules/smartypants { };
pypeg2 = buildPythonPackage rec {
version = "2.15.2";
name = "pypeg2-${version}";
src = pkgs.fetchurl {
url = "mirror://pypi/p/pyPEG2/pyPEG2-${version}.tar.gz";
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 = {
description = "PEG parser interpreter in Python";
homepage = http://fdik.org/pyPEG;
license = licenses.gpl2;
};
};
pypeg2 = callPackage ../development/python-modules/pypeg2 { };
torchvision = callPackage ../development/python-modules/torchvision { };