linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / unittest2 / default.nix
blobae8cab53b0c57e6927e7cb3238ebc12ee8dd76cb
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , six
5 , traceback2
6 }:
8 buildPythonPackage rec {
9   version = "1.1.0";
10   pname = "unittest2";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "0y855kmx7a8rnf81d3lh5lyxai1908xjp0laf4glwa4c8472m212";
15   };
17   propagatedBuildInputs = [ six traceback2 ];
19   # # 1.0.0 and up create a circle dependency with traceback2/pbr
20   doCheck = false;
22   postPatch = ''
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
30   '';
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   };