summary refs log tree commit diff
path: root/pkgs/development/python-modules/paste/default.nix
blob: 71b670b707cc879e716054bdb7088f12f8620244 (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
{ lib
, buildPythonPackage
, fetchPypi
, six
, pytest-runner
, pytest
}:

buildPythonPackage rec {
  pname = "paste";
  version = "3.5.0";

  src = fetchPypi {
    pname = "Paste";
    inherit version;
    sha256 = "17f3zppjjprs2jnklvzkz23mh9jdn6b1f445mvrjdm4ivi15q28v";
  };

  propagatedBuildInputs = [ six ];

  checkInputs = [ pytest-runner pytest ];

  # Certain tests require network
  checkPhase = ''
    py.test -k "not test_cgiapp and not test_proxy"
  '';

  meta = with lib; {
    description = "Tools for using a Web Server Gateway Interface stack";
    homepage = "http://pythonpaste.org/";
    license = licenses.mit;
  };

}