python{27,310}Packages.unittest2: move to python2-modules

This commit is contained in:
Theodore Ni
2022-12-07 14:25:01 -08:00
parent a061ba34b1
commit de0f03b56d
6 changed files with 4 additions and 28 deletions
@@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, six
, traceback2
}:
buildPythonPackage rec {
version = "1.1.0";
pname = "unittest2";
src = fetchPypi {
inherit pname version;
hash = "sha256-IogqDkGMKE4fcYqCKzsCKUTVPS2QjhaQsxmp0+ssBXk=";
};
propagatedBuildInputs = [ six traceback2 ];
# 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" ""
# 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
'';
meta = with lib; {
description = "A backport of the new features added to the unittest testing framework";
homepage = "https://pypi.org/project/unittest2/";
license = licenses.bsd0;
};
}