python313Packages.whitenoise: 6.9.0 -> 6.11.0

Diff: https://github.com/evansd/whitenoise/compare/6.9.0...6.11.0

Changelog: https://github.com/evansd/whitenoise/blob/6.11.0/docs/changelog.rst
This commit is contained in:
Fabian Affolter
2025-09-21 15:29:55 +02:00
parent 1995be70f2
commit af55528133

View File

@@ -11,16 +11,18 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "whitenoise"; pname = "whitenoise";
version = "6.9.0"; version = "6.11.0";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "evansd"; owner = "evansd";
repo = "whitenoise"; repo = "whitenoise";
tag = version; tag = version;
hash = "sha256-UmM8Az22ql3uUpyY6jj7ky3LelmttFBqGMYlzlNRAHg="; hash = "sha256-pcU4qa2dlyPfMgyi1O8zME4GukIvKN4MQhFtJJjdn9w=";
}; };
__darwinAllowLocalNetworking = true;
build-system = [ setuptools ]; build-system = [ setuptools ];
dependencies = [ brotli ]; dependencies = [ brotli ];
@@ -31,15 +33,6 @@ buildPythonPackage rec {
requests requests
]; ];
__darwinAllowLocalNetworking = true;
disabledTestPaths = [
# Don't run Django tests
"tests/test_django_whitenoise.py"
"tests/test_runserver_nostatic.py"
"tests/test_storage.py"
];
disabledTests = [ disabledTests = [
# Test fails with AssertionError # Test fails with AssertionError
"test_modified" "test_modified"