Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "waitress"; 9 version = "3.0.0"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 hash = "sha256-AF2kebBBNM3Z3WAtHufEnXneBTdhDWU2dMxsveIiuKE="; 15 }; 16 17 doCheck = false; 18 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 }; 26}