nixpkgs/pkgs/development/python-modules/whitenoise/default.nix

21 lines
471 B
Nix
Raw Normal View History

2018-01-20 10:51:59 +00:00
{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "whitenoise";
2018-11-04 10:35:21 +00:00
version = "4.1";
2018-01-20 10:51:59 +00:00
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:21 +00:00
sha256 = "32b57d193478908a48acb66bf73e7a3c18679263e3e64bfebcfac1144a430039";
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;
};
}