From 4882e431c7523f7298bebfde5d494aceeb1529b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 13 Feb 2017 21:55:54 +0100 Subject: [PATCH] Revert "pythonPackages.unittest2: no need to depend on argparse" This reverts commit 6891c9291d41058451b05a96bb5f6eded966b0f4. Moving the mass rebuild to staging. --- pkgs/top-level/python-packages.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f93bc71109b0..e7ee93e21fec 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -26334,17 +26334,14 @@ in { # # 1.0.0 and up create a circle dependency with traceback2/pbr doCheck = false; - postPatch = '' - # argparse is needed for python < 2.7, which we do not support anymore. - substituteInPlace setup.py --replace "argparse" - + patchPhase = '' # # 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 # https://github.com/pypa/packaging/pull/36 sed -i 's/version=VERSION/version=str(VERSION)/' setup.py ''; - propagatedBuildInputs = with self; [ six traceback2 ]; + propagatedBuildInputs = with self; [ six argparse traceback2 ]; meta = { description = "A backport of the new features added to the unittest testing framework";