nixpkgs/pkgs/development/python-modules/ddt/default.nix

22 lines
436 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "ddt";
2018-11-04 10:34:57 +00:00
version = "1.2.0";
src = fetchPypi {
inherit pname version;
2018-11-04 10:34:57 +00:00
sha256 = "898364fc34b27981b925171a0011c174c94633cb678eb1fac05fe7a234c7912c";
};
meta = with stdenv.lib; {
description = "Data-Driven/Decorated Tests, a library to multiply test cases";
homepage = https://github.com/txels/ddt;
license = licenses.mit;
};
}