mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Revert "pythonPackages.unittest2: no need to depend on argparse"
This reverts commit 6891c9291d
.
Moving the mass rebuild to staging.
This commit is contained in:
parent
a2d2649a8f
commit
4882e431c7
1 changed files with 2 additions and 5 deletions
|
@ -26334,17 +26334,14 @@ in {
|
||||||
# # 1.0.0 and up create a circle dependency with traceback2/pbr
|
# # 1.0.0 and up create a circle dependency with traceback2/pbr
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
postPatch = ''
|
patchPhase = ''
|
||||||
# argparse is needed for python < 2.7, which we do not support anymore.
|
|
||||||
substituteInPlace setup.py --replace "argparse"
|
|
||||||
|
|
||||||
# # fixes a transient error when collecting tests, see https://bugs.launchpad.net/python-neutronclient/+bug/1508547
|
# # fixes a transient error when collecting tests, see https://bugs.launchpad.net/python-neutronclient/+bug/1508547
|
||||||
sed -i '510i\ return None, False' unittest2/loader.py
|
sed -i '510i\ return None, False' unittest2/loader.py
|
||||||
# https://github.com/pypa/packaging/pull/36
|
# https://github.com/pypa/packaging/pull/36
|
||||||
sed -i 's/version=VERSION/version=str(VERSION)/' setup.py
|
sed -i 's/version=VERSION/version=str(VERSION)/' setup.py
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ six traceback2 ];
|
propagatedBuildInputs = with self; [ six argparse traceback2 ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A backport of the new features added to the unittest testing framework";
|
description = "A backport of the new features added to the unittest testing framework";
|
||||||
|
|
Loading…
Reference in a new issue