about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/meinheld/default.nix
blob: 247523a9a8301bd679050124bb72e6f915d40a49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchPypi, buildPythonPackage, greenlet }:

buildPythonPackage rec {
  pname = "meinheld";
  version = "1.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "447de7189e4dc9c1f425aa1b9c8210aab492fda4d86f73a24059264e7d8b0134";
  };

  propagatedBuildInputs = [ greenlet ];

  # No tests
  doCheck = false;

  meta = with stdenv.lib; {
    description = "High performance asynchronous Python WSGI Web Server";
    homepage = "https://meinheld.org/";
    license = licenses.bsd3;
  };
}