mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
45 lines
917 B
Nix
45 lines
917 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy27
|
|
, nose
|
|
, webob
|
|
, six
|
|
, beautifulsoup4
|
|
, waitress
|
|
, mock
|
|
, pyquery
|
|
, wsgiproxy2
|
|
, PasteDeploy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "2.0.32";
|
|
pname = "webtest";
|
|
disabled = isPy27; # paste.deploy is not longer a valid import
|
|
|
|
src = fetchPypi {
|
|
pname = "WebTest";
|
|
inherit version;
|
|
sha256 = "4221020d502ff414c5fba83c1213985b83219cb1cc611fe58aa4feaf96b5e062";
|
|
};
|
|
|
|
preConfigure = ''
|
|
substituteInPlace setup.py --replace "nose<1.3.0" "nose"
|
|
'';
|
|
|
|
propagatedBuildInputs = [ webob six beautifulsoup4 waitress ];
|
|
|
|
checkInputs = [ nose mock PasteDeploy wsgiproxy2 pyquery ];
|
|
|
|
# Some of the tests use localhost networking.
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Helper to test WSGI applications";
|
|
homepage = "https://webtest.readthedocs.org/en/latest/";
|
|
license = licenses.mit;
|
|
};
|
|
|
|
}
|