aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/waitress/default.nix
blob: 3812ed06b60c75d37626a639b61960ee5a1fd743 (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.4.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1bb436508a7487ac6cb097ae7a7fe5413aefca610550baf58f0940e51ecfb261";
  };

  doCheck = false;

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

}