Merge pull request #319171 from getchoo/pkgs/gunicorn/adopt

python311Packages.gunicorn: adopt; modernize
This commit is contained in:
Pol Dellaiera 2024-06-16 22:51:43 +02:00 committed by GitHub
commit cd2d0ba147
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,11 +38,11 @@ buildPythonPackage rec {
--replace "--cov=gunicorn --cov-report=xml" ""
'';
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [ packaging ];
dependencies = [ packaging ];
passthru.optional-dependencies = {
optional-dependencies = {
gevent = [ gevent ];
eventlet = [ eventlet ];
tornado = [ tornado ];
@ -52,16 +52,14 @@ buildPythonPackage rec {
pythonImportsCheck = [ "gunicorn" ];
nativeCheckInputs = [
pytestCheckHook
] ++ lib.flatten (lib.attrValues passthru.optional-dependencies);
nativeCheckInputs = [ pytestCheckHook ] ++ lib.flatten (lib.attrValues optional-dependencies);
meta = with lib; {
changelog = "https://github.com/benoitc/gunicorn/releases/tag/${version}";
homepage = "https://github.com/benoitc/gunicorn";
meta = {
description = "gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications";
license = licenses.mit;
maintainers = with maintainers; [ ];
homepage = "https://github.com/benoitc/gunicorn";
changelog = "https://github.com/benoitc/gunicorn/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ getchoo ];
mainProgram = "gunicorn";
};
}