mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.unittest2: fix a transient bug
This commit is contained in:
parent
3ee4747675
commit
0353121dc5
1 changed files with 5 additions and 0 deletions
|
@ -17055,6 +17055,11 @@ let
|
|||
# # 1.0.0 and up create a circle dependency with traceback2/pbr
|
||||
doCheck = false;
|
||||
|
||||
# fixes a transient error when collecting tests, see https://bugs.launchpad.net/python-neutronclient/+bug/1508547
|
||||
patchPhase = ''
|
||||
sed -i '510i\ return None, False' unittest2/loader.py
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = with self; [ six argparse traceback2 ];
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue