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

30 lines
797 B
Nix
Raw Normal View History

2018-06-22 11:04:17 +01:00
{ stdenv, buildPythonPackage, fetchPypi
, pytest, mock, pytestcov, coverage }:
buildPythonPackage rec {
pname = "gunicorn";
2018-07-22 11:10:19 +01:00
version = "19.9.0";
2018-06-22 11:04:17 +01:00
src = fetchPypi {
inherit pname version;
2018-07-22 11:10:19 +01:00
sha256 = "fa2662097c66f920f53f70621c6c58ca4a3c4d3434205e608e121b5b3b71f4f3";
};
2018-06-22 11:04:17 +01:00
checkInputs = [ pytest mock pytestcov coverage ];
prePatch = ''
2018-06-22 11:04:17 +01:00
substituteInPlace requirements_test.txt --replace "==" ">=" \
--replace "coverage>=4.0,<4.4" "coverage"
'';
2019-08-18 10:35:14 +01:00
# Test failures but patch does not apply cleanly
# https://github.com/benoitc/gunicorn/commit/f38f717539b1b7296720805b8ae3969c3509b9c1
doCheck = false;
meta = with stdenv.lib; {
homepage = https://pypi.python.org/pypi/gunicorn;
description = "WSGI HTTP Server for UNIX";
license = licenses.mit;
};
}