aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/waitress/default.nix
blob: 72da3204a646f9fd7c215b891bcafdb57806b3dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "waitress";
  version = "1.3.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "278e09d6849acc1365404bbf7d790d0423b159802e850c726e8cd0a126a2dac7";
  };

  doCheck = false;

  meta = with stdenv.lib; {
     homepage = "https://github.com/Pylons/waitress";
     description = "Waitress WSGI server";
     license = licenses.zpl20;
     maintainers = with maintainers; [ domenkozar ];
  };

}