summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/parameterizedtestcase/default.nix
blob: 9d277af8d1a9c40de3909e80587aebec359b9927 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ 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
  };
}