about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/gunicorn/default.nix
blob: ec2ed2aaf63d65885795db9f398f68f2f6af8243 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder

# build-system
, setuptools

# dependencies
, packaging

# optional-dependencies
, eventlet
, gevent
, tornado
, setproctitle

, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "gunicorn";
  version = "21.2.0";
  pyproject = true;

  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" ""
  '';

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    packaging
  ];

  passthru.optional-dependencies = {
    gevent = [
      gevent
    ];
    eventlet = [
      eventlet
    ];
    tornado = [
      tornado
    ];
    gthread = [];
    setproctitle = [
      setproctitle
    ];
  };

  pythonImportsCheck = [
    "gunicorn"
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ] ++ lib.flatten (lib.attrValues passthru.optional-dependencies);

  meta = with lib; {
    changelog = "https://github.com/benoitc/gunicorn/releases/tag/${version}";
    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; [ ];
    mainProgram = "gunicorn";
  };
}