2018-01-20 10:51:59 +00:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "whitenoise";
|
2018-08-13 08:34:36 +01:00
|
|
|
version = "4.0";
|
2018-01-20 10:51:59 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-08-13 08:34:36 +01:00
|
|
|
sha256 = "1e206c5adfb849942ddd057e599ac472ec1a85d56ae78a5ba24f243ea46a89c5";
|
2018-01-20 10:51:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# No tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Radically simplified static file serving for WSGI applications";
|
|
|
|
homepage = http://whitenoise.evans.io/;
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|