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

41 lines
849 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, isPy27
, coverage
, mock
, pytest
, pytest-cov
, setuptools
}:
buildPythonPackage rec {
pname = "gunicorn";
version = "20.1.0";
disabled = isPy27;
2018-06-22 10:04:17 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8";
};
propagatedBuildInputs = [ setuptools ];
checkInputs = [ pytest mock pytest-cov coverage ];
prePatch = ''
2018-06-22 10:04:17 +00: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 09:35:14 +00:00
meta = with lib; {
2020-02-11 03:27:45 +00:00
homepage = "https://github.com/benoitc/gunicorn";
description = "WSGI HTTP Server for UNIX";
license = licenses.mit;
};
}