nixpkgs/pkgs/development/python-modules/paste/default.nix

35 lines
648 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, six
2018-12-02 21:45:42 +00:00
, pytestrunner
, pytest
}:
buildPythonPackage rec {
pname = "paste";
2020-07-06 14:59:09 +00:00
version = "3.4.1";
src = fetchPypi {
2018-12-02 21:45:42 +00:00
pname = "Paste";
inherit version;
2020-07-06 14:59:09 +00:00
sha256 = "1csqn7g9b05hp3fgd82355k4pb5rv12k9x6p2mdw2v01m385171p";
};
propagatedBuildInputs = [ six ];
2018-12-02 21:45:42 +00:00
checkInputs = [ pytestrunner pytest ];
# Certain tests require network
checkPhase = ''
2018-12-02 21:45:42 +00:00
py.test -k "not test_cgiapp and not test_proxy"
'';
meta = with stdenv.lib; {
description = "Tools for using a Web Server Gateway Interface stack";
homepage = "http://pythonpaste.org/";
license = licenses.mit;
};
}