pythonPackages.parameterizedtestcase: drop

This commit is contained in:
Markus S. Wamser 2022-12-05 22:49:22 +01:00 committed by Robert Schütz
parent 73edfad2b1
commit b49d4ffb24
2 changed files with 0 additions and 34 deletions

View File

@ -1,32 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
, python
, isPy27
}:
buildPythonPackage rec {
pname = "parameterizedtestcase";
version = "0.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "4ccc1d15d7e7ef153619a6a9cd45b170268cf82c67fdd336794c75139aae127e";
};
checkPhase = ''
runHook preCheck
${python.interpreter} -m parameterizedtestcase.tests
runHook postCheck
'';
doCheck = isPy27;
meta = with lib; {
description = "Parameterized tests for Python's unittest module";
homepage = "https://github.com/msabramo/python_unittest_parameterized_test_case";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
broken = python.isPy3k; # uses use_2to3
};
}

View File

@ -6887,8 +6887,6 @@ self: super: with self; {
pandas-stubs = callPackage ../development/python-modules/pandas-stubs { };
parameterizedtestcase = callPackage ../development/python-modules/parameterizedtestcase { };
pdunehd = callPackage ../development/python-modules/pdunehd { };
pencompy = callPackage ../development/python-modules/pencompy { };