mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
python.pkgs.ddt: fix tests
This commit is contained in:
parent
f5d60b80b8
commit
3db122cd9f
@ -1,6 +1,7 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, nose, six, pyyaml, mock
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -12,6 +13,12 @@ buildPythonPackage rec {
|
||||
sha256 = "898364fc34b27981b925171a0011c174c94633cb678eb1fac05fe7a234c7912c";
|
||||
};
|
||||
|
||||
checkInputs = [ nose six pyyaml mock ];
|
||||
|
||||
checkPhase = ''
|
||||
nosetests -s
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Data-Driven/Decorated Tests, a library to multiply test cases";
|
||||
homepage = https://github.com/txels/ddt;
|
||||
|
Loading…
Reference in New Issue
Block a user