python311Packages.whitenoise: 6.2.0 -> 6.4.0

Changelog: https://github.com/evansd/whitenoise/blob/6.4.0/docs/changelog.rst
This commit is contained in:
Fabian Affolter 2023-05-05 23:22:26 +02:00
parent 63259fa75c
commit 0ba90fe890

View file

@ -6,12 +6,13 @@
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, requests , requests
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "whitenoise"; pname = "whitenoise";
version = "6.2.0"; version = "6.4.0";
format = "setuptools"; format = "pyproject";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -20,10 +21,14 @@ buildPythonPackage rec {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "evansd"; owner = "evansd";
repo = pname; repo = pname;
rev = version; rev = "refs/tags/${version}";
hash = "sha256-HcWWWMIuU8kfcOnntgXUnHD3pFogq8OEAd3wRtCnXjQ="; hash = "sha256-ouEoqMcNh3Vwahwaq6bGQuVUFViVN14CDJosDXC5ozI=";
}; };
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [ propagatedBuildInputs = [
brotli brotli
]; ];
@ -51,8 +56,9 @@ buildPythonPackage rec {
]; ];
meta = with lib; { meta = with lib; {
description = "Radically simplified static file serving for WSGI applications"; description = "Library to serve static file for WSGI applications";
homepage = "https://whitenoise.evans.io/"; homepage = "https://whitenoise.evans.io/";
changelog = "https://github.com/evansd/whitenoise/blob/${version}/docs/changelog.rst";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
}; };