Merge pull request #332063 from fabaff/whitenoise-bump

python312Packages.whitenoise: 6.6.0 -> 6.7.0
This commit is contained in:
Martin Weinelt 2024-08-05 12:30:46 +02:00 committed by GitHub
commit 4f2d012633
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -111,6 +111,7 @@ python.pkgs.buildPythonApplication rec {
"reportlab"
"requests"
"rules"
"whitenoise"
];
propagatedBuildInputs = with python.pkgs; [

View File

@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "whitenoise";
version = "6.6.0";
version = "6.7.0";
pyproject = true;
disabled = pythonOlder "3.8";
@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "evansd";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-Z59GjrOL+BPHqBCirg9T4qBOrjiuBng6Q5lTuLQx9ac=";
hash = "sha256-4SrTiTqBrfFuQ/8mqQL+YiehFWW+ZzKiAF0h2XyYuSs=";
};
nativeBuildInputs = [ setuptools ];