summary refs log tree commit diff
path: root/pkgs/development/python-modules/webtest/default.nix
blob: d8482872bc34953ecdc85c0364d777b7ca55d86b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ stdenv
, buildPythonPackage
, fetchPypi
, nose
, webob
, six
, beautifulsoup4
, waitress
, mock
, pyquery
, wsgiproxy2
, PasteDeploy
}:

buildPythonPackage rec {
  version = "2.0.32";
  pname = "webtest";

  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 ];

  meta = with stdenv.lib; {
    description = "Helper to test WSGI applications";
    homepage = https://webtest.readthedocs.org/en/latest/;
    license = licenses.mit;
  };

}