summary refs log tree commit diff
path: root/pkgs/development/python-modules/ddt/default.nix
blob: 2fb9e9e990b6ad932c68fcb671920d19c2f6866e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "ddt";
  version = "1.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "e24ecb7e2cf0bf43fa9d4255d3ae2bd0b7ce30b1d1b89ace7aa68aca1152f37a";
  };

  meta = with stdenv.lib; {
    description = "Data-Driven/Decorated Tests, a library to multiply test cases";
    homepage = https://github.com/txels/ddt;
    license = licenses.mit;
  };

}