Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 20 lines 473 B view raw
1{ stdenv, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "whitenoise"; 5 version = "4.1.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "42133ddd5229eeb6a0c9899496bdbe56c292394bf8666da77deeb27454c0456a"; 10 }; 11 12 # No tests 13 doCheck = false; 14 15 meta = with stdenv.lib; { 16 description = "Radically simplified static file serving for WSGI applications"; 17 homepage = http://whitenoise.evans.io/; 18 license = licenses.mit; 19 }; 20}