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

40 lines
828 B
Nix
Raw Normal View History

2018-06-22 11:04:17 +01:00
{ stdenv, buildPythonPackage, fetchPypi
, coverage
, mock
, pytest
, pytestcov
, setuptools
}:
buildPythonPackage rec {
pname = "gunicorn";
2019-12-19 19:31:13 +00:00
version = "20.0.4";
2018-06-22 11:04:17 +01:00
src = fetchPypi {
inherit pname version;
2019-12-19 19:31:13 +00:00
sha256 = "1904bb2b8a43658807108d59c3f3d56c2b6121a701161de0ddf9ad140073c626";
};
propagatedBuildInputs = [ setuptools ];
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"
'';
# better than no tests
checkPhase = ''
$out/bin/gunicorn --help > /dev/null
'';
pythonImportsCheck = [ "gunicorn" ];
2019-08-18 10:35:14 +01:00
meta = with stdenv.lib; {
homepage = https://pypi.python.org/pypi/gunicorn;
description = "WSGI HTTP Server for UNIX";
license = licenses.mit;
};
}