mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
pythonPackages.pypeg2: refactor move to python-modules
This commit is contained in:
parent
ff64515579
commit
15b5f85a96
30
pkgs/development/python-modules/pypeg2/default.nix
Normal file
30
pkgs/development/python-modules/pypeg2/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user