python.pkgs.PasteDeploy: no tests in tarball
This commit is contained in:
parent
869d64e2d1
commit
9a36041027
|
@ -1,7 +1,8 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, nose
|
, pytestrunner
|
||||||
|
, pytest
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -13,7 +14,13 @@ buildPythonPackage rec {
|
||||||
sha256 = "d423fb9d51fdcf853aa4ff43ac7ec469b643ea19590f67488122d6d0d772350a";
|
sha256 = "d423fb9d51fdcf853aa4ff43ac7ec469b643ea19590f67488122d6d0d772350a";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ nose ];
|
buildInputs = [ pytestrunner ];
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
|
# no tests in PyPI tarball
|
||||||
|
# should be included with versions > 2.0.1
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Load, configure, and compose WSGI applications and servers";
|
description = "Load, configure, and compose WSGI applications and servers";
|
||||||
|
|
Loading…
Reference in New Issue