croc: 10.1.1 -> 10.1.3 (#364662)
[NixPkgs.git] / pkgs / development / python-modules / waitress / default.nix
blob933823a748c5c723485ad0bf5f319a19aabce451
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "waitress";
9   version = "3.0.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-AF2kebBBNM3Z3WAtHufEnXneBTdhDWU2dMxsveIiuKE=";
15   };
17   doCheck = false;
19   meta = with lib; {
20     homepage = "https://github.com/Pylons/waitress";
21     description = "Waitress WSGI server";
22     mainProgram = "waitress-serve";
23     license = licenses.zpl20;
24     maintainers = with maintainers; [ domenkozar ];
25   };