Merge pull request #188233 from centromere/whitenoise-6.2.0

pythonPackages.whitenoise: 6.0.0 -> 6.2.0
This commit is contained in:
Fabian Affolter 2022-08-25 09:37:57 +02:00 committed by GitHub
commit 3cc8a45c4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,16 +10,18 @@
buildPythonPackage rec {
pname = "whitenoise";
version = "6.0.0";
version = "6.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
__darwinAllowLocalNetworking = true;
src = fetchFromGitHub {
owner = "evansd";
repo = pname;
rev = version;
hash = "sha256-mUjyX4eQOiMweje6UPyfyJsiHwzF5OQ93KuxFedWxbQ=";
hash = "sha256-HcWWWMIuU8kfcOnntgXUnHD3pFogq8OEAd3wRtCnXjQ=";
};
propagatedBuildInputs = [
@ -50,7 +52,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Radically simplified static file serving for WSGI applications";
homepage = "http://whitenoise.evans.io/";
homepage = "https://whitenoise.evans.io/";
license = licenses.mit;
maintainers = with maintainers; [ ];
};