mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 13:13:09 +00:00
Merge pull request #319171 from getchoo/pkgs/gunicorn/adopt
python311Packages.gunicorn: adopt; modernize
This commit is contained in:
commit
cd2d0ba147
@ -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";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user