5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
50 lines
1.2 KiB
Nix
50 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
mock,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "parameterized";
|
|
version = "0.9.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-f8kFJyzvpPNkwaNCnLvpwPmLeTmI77W/kKrIDwjbCbE=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# broken with pytest 7 and python 3.12
|
|
# https://github.com/wolever/parameterized/issues/167
|
|
# https://github.com/wolever/parameterized/pull/162
|
|
substituteInPlace parameterized/test.py \
|
|
--replace 'assert_equal(missing, [])' "" \
|
|
--replace "assertRaisesRegexp" "assertRaisesRegex"
|
|
'';
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
checkInputs = [
|
|
mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
pytestFlagsArray = [ "parameterized/test.py" ];
|
|
|
|
pythonImportsCheck = [ "parameterized" ];
|
|
|
|
meta = with lib; {
|
|
description = "Parameterized testing with any Python test framework";
|
|
homepage = "https://github.com/wolever/parameterized";
|
|
changelog = "https://github.com/wolever/parameterized/blob/v${version}/CHANGELOG.txt";
|
|
license = licenses.bsd2;
|
|
maintainers = [ ];
|
|
};
|
|
}
|