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

35 lines
658 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, six
2018-12-02 22:45:42 +01:00
, pytestrunner
, pytest
}:
buildPythonPackage rec {
pname = "paste";
2018-12-02 22:45:42 +01:00
version = "3.0.5";
src = fetchPypi {
2018-12-02 22:45:42 +01:00
pname = "Paste";
inherit version;
sha256 = "1bb2068807ce3592d313ce9b1a25a7ac842a504e7e3b005027193d17a043d1a8";
};
propagatedBuildInputs = [ six ];
2018-12-02 22:45:42 +01:00
checkInputs = [ pytestrunner pytest ];
# Certain tests require network
checkPhase = ''
2018-12-02 22:45:42 +01: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;
};
}