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

22 lines
504 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, isPy27 }:
2018-01-20 10:51:59 +00:00
buildPythonPackage rec {
pname = "whitenoise";
2020-08-16 17:31:20 +00:00
version = "5.2.0";
disabled = isPy27;
2018-01-20 10:51:59 +00:00
src = fetchPypi {
inherit pname version;
2020-08-16 17:31:20 +00:00
sha256 = "05ce0be39ad85740a78750c86a93485c40f08ad8c62a6006de0233765996e5c7";
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/";
2018-01-20 10:51:59 +00:00
license = licenses.mit;
};
}