Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / waitress / default.nix
blob898b1093159d8c9cdaa190972563b8166a9672ce
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "waitress";
8   version = "2.1.2";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "780a4082c5fbc0fde6a2fcfe5e26e6efc1e8f425730863c04085769781f51eba";
13   };
15   doCheck = false;
17   meta = with lib; {
18      homepage = "https://github.com/Pylons/waitress";
19      description = "Waitress WSGI server";
20      license = licenses.zpl20;
21      maintainers = with maintainers; [ domenkozar ];
22   };