2018-10-26 02:01:13 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-02-14 14:13:35 +00:00
|
|
|
, pytestrunner
|
|
|
|
, pytest
|
2018-10-26 02:01:13 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2020-06-06 07:47:21 +01:00
|
|
|
version = "2.1.0";
|
2018-10-26 02:01:13 +01:00
|
|
|
pname = "PasteDeploy";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:21 +01:00
|
|
|
sha256 = "e7559878b6e92023041484be9bcb6d767cf4492fc3de7257a5dae76a7cc11a9b";
|
2018-10-26 02:01:13 +01:00
|
|
|
};
|
|
|
|
|
2019-02-14 14:13:35 +00:00
|
|
|
buildInputs = [ pytestrunner ];
|
|
|
|
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
|
|
|
# no tests in PyPI tarball
|
|
|
|
# should be included with versions > 2.0.1
|
|
|
|
doCheck = false;
|
2018-10-26 02:01:13 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Load, configure, and compose WSGI applications and servers";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://pythonpaste.org/deploy/";
|
2018-10-26 02:01:13 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|