4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{ lib, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, six
|
|
, traceback2
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.1.0";
|
|
pname = "unittest2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0y855kmx7a8rnf81d3lh5lyxai1908xjp0laf4glwa4c8472m212";
|
|
};
|
|
|
|
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.python.org/pypi/unittest2";
|
|
license = licenses.bsd0;
|
|
};
|
|
|
|
}
|