linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / paste / default.nix
blob533a4dc3a308d4ac603d5d5f60c1d25dbbb0f15c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , six
5 , pytestrunner
6 , pytest
7 }:
9 buildPythonPackage rec {
10   pname = "paste";
11   version = "3.5.0";
13   src = fetchPypi {
14     pname = "Paste";
15     inherit version;
16     sha256 = "17f3zppjjprs2jnklvzkz23mh9jdn6b1f445mvrjdm4ivi15q28v";
17   };
19   propagatedBuildInputs = [ six ];
21   checkInputs = [ pytestrunner pytest ];
23   # Certain tests require network
24   checkPhase = ''
25     py.test -k "not test_cgiapp and not test_proxy"
26   '';
28   meta = with lib; {
29     description = "Tools for using a Web Server Gateway Interface stack";
30     homepage = "http://pythonpaste.org/";
31     license = licenses.mit;
32   };