1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "waitress"; 8 version = "2.0.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "69e1f242c7f80273490d3403c3976f3ac3b26e289856936d1f620ed48f321897"; 13 }; 14 15 doCheck = false; 16 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 }; 23 24}