summary refs log tree commit diff
path: root/pkgs/development/python-modules/parameterized/default.nix
blob: 14b41fe950bbd2d3efcedc5ec4007095a0ee7390 (plain) (blame)
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
{ stdenv, fetchPypi, buildPythonPackage, nose, six, glibcLocales, isPy3k }:

buildPythonPackage rec {
  pname = "parameterized";
  version = "0.6.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1qj1939shm48d9ql6fm1nrdy4p7sdyj8clz1szh5swwpf1qqxxfa";
  };

  # Tests require some python3-isms but code works without.
  doCheck = isPy3k;

  checkInputs = [ nose glibcLocales ];
  propagatedBuildInputs = [ six ];

  checkPhase = ''
    LC_ALL="en_US.UTF-8" nosetests -v
  '';

  meta = with stdenv.lib; {
    description = "Parameterized testing with any Python test framework";
    homepage = https://pypi.python.org/pypi/parameterized;
    license = licenses.bsd3;
    maintainers = with maintainers; [ ma27 ];
  };
}