Files
nixpkgs/pkgs/development/python-modules/gunicorn/default.nix
T
Vladimír Čunát 923a94aba4 python3Packages.gunicorn: add missing dependency
The package wouldn't fail itself but others depending on it would:
https://hydra.nixos.org/build/229774404/nixlog/4/tail
2023-08-07 07:38:43 +02:00

50 lines
970 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, packaging
, pythonOlder
, eventlet
, gevent
, pytestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "gunicorn";
version = "21.2.0";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "benoitc";
repo = "gunicorn";
rev = version;
hash = "sha256-xP7NNKtz3KNrhcAc00ovLZRx2h6ZqHbwiFOpCiuwf98=";
};
postPatch = ''
substituteInPlace setup.cfg \
--replace "--cov=gunicorn --cov-report=xml" ""
'';
propagatedBuildInputs = [
setuptools
packaging
];
nativeCheckInputs = [
eventlet
gevent
pytestCheckHook
];
pythonImportsCheck = [ "gunicorn" ];
meta = with lib; {
homepage = "https://github.com/benoitc/gunicorn";
description = "gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}