Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 24 lines 486 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "waitress"; 8 version = "1.4.4"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1bb436508a7487ac6cb097ae7a7fe5413aefca610550baf58f0940e51ecfb261"; 13 }; 14 15 doCheck = false; 16 17 meta = with stdenv.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}