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