8 buildPythonPackage rec {
13 inherit pname version;
14 sha256 = "0y855kmx7a8rnf81d3lh5lyxai1908xjp0laf4glwa4c8472m212";
17 propagatedBuildInputs = [ six traceback2 ];
19 # # 1.0.0 and up create a circle dependency with traceback2/pbr
23 # argparse is needed for python < 2.7, which we do not support anymore.
24 substituteInPlace setup.py --replace "argparse" ""
26 # # fixes a transient error when collecting tests, see https://bugs.launchpad.net/python-neutronclient/+bug/1508547
27 sed -i '510i\ return None, False' unittest2/loader.py
28 # https://github.com/pypa/packaging/pull/36
29 sed -i 's/version=VERSION/version=str(VERSION)/' setup.py
33 description = "A backport of the new features added to the unittest testing framework";
34 homepage = "https://pypi.python.org/pypi/unittest2";
35 license = licenses.bsd0;