2017-01-13 23:08:19 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchurl
|
|
|
|
, pytest, mock, pytestcov, coverage }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 09:25:35 +00:00
|
|
|
pname = "gunicorn";
|
2018-06-12 16:47:01 +00:00
|
|
|
version = "19.8.1";
|
2017-05-27 09:25:35 +00:00
|
|
|
name = "${pname}-${version}";
|
2017-01-13 23:08:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://pypi/g/gunicorn/${name}.tar.gz";
|
2018-06-12 16:47:01 +00:00
|
|
|
sha256 = "bc59005979efb6d2dd7d5ba72d99f8a8422862ad17ff3a16e900684630dd2a10";
|
2017-01-13 23:08:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pytest mock pytestcov coverage ];
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace requirements_test.txt --replace "==" ">="
|
|
|
|
'';
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|