summary refs log tree commit diff
path: root/pkgs/development/python-modules/repeated_test/default.nix
blob: 2c51238e19b540dfb7745e19a10a364530fb1c87 (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
{ lib
, buildPythonPackage
, fetchPypi
, unittest2
, six
}:

buildPythonPackage rec {
  pname = "repeated_test";
  version = "1.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "65107444a4945668ab7be6d1a3e1814cee9b2cfc577e7c70381700b11b809d27";
  };

  buildInputs = [ unittest2 ];
  propagatedBuildInputs = [ six ];

  meta = with lib; {
    description = "A quick unittest-compatible framework for repeating a test function over many fixtures";
    homepage = "https://github.com/epsy/repeated_test";
    license = licenses.mit;
  };

}