about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/waitress/default.nix
blob: fb39ae9fc7a8feb51a0f48865fda9a2390868de9 (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
{ stdenv
, buildPythonPackage
, fetchPypi
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "c369e238bd81ef7d61f04825f06f107c42094de60d13d8de8e71952c7c683dfe";
  };

  doCheck = false;

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

}