1{ lib 2, buildPythonPackage 3, fetchPypi 4, six 5, traceback2 6}: 7 8buildPythonPackage rec { 9 version = "1.1.0"; 10 pname = "unittest2"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "0y855kmx7a8rnf81d3lh5lyxai1908xjp0laf4glwa4c8472m212"; 15 }; 16 17 propagatedBuildInputs = [ six traceback2 ]; 18 19 # # 1.0.0 and up create a circle dependency with traceback2/pbr 20 doCheck = false; 21 22 postPatch = '' 23 # argparse is needed for python < 2.7, which we do not support anymore. 24 substituteInPlace setup.py --replace "argparse" "" 25 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 30 ''; 31 32 meta = with lib; { 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; 36 }; 37 38}