2018-06-22 11:04:17 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2017-01-13 23:08:19 +00:00
|
|
|
, pytest, mock, pytestcov, coverage }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "gunicorn";
|
2018-07-22 11:10:19 +01:00
|
|
|
version = "19.9.0";
|
2017-01-13 23:08:19 +00:00
|
|
|
|
2018-06-22 11:04:17 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-22 11:10:19 +01:00
|
|
|
sha256 = "fa2662097c66f920f53f70621c6c58ca4a3c4d3434205e608e121b5b3b71f4f3";
|
2017-01-13 23:08:19 +00:00
|
|
|
};
|
|
|
|
|
2018-06-22 11:04:17 +01:00
|
|
|
checkInputs = [ pytest mock pytestcov coverage ];
|
2017-01-13 23:08:19 +00:00
|
|
|
|
|
|
|
prePatch = ''
|
2018-06-22 11:04:17 +01:00
|
|
|
substituteInPlace requirements_test.txt --replace "==" ">=" \
|
|
|
|
--replace "coverage>=4.0,<4.4" "coverage"
|
2017-01-13 23:08:19 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-11-10 21:13:27 +00:00
|
|
|
homepage = https://pypi.python.org/pypi/gunicorn;
|
2017-01-13 23:08:19 +00:00
|
|
|
description = "WSGI HTTP Server for UNIX";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|