python313Packages.whitenoise: 6.9.0 -> 6.11.0 (#444966)

This commit is contained in:
Sandro
2025-09-23 21:36:22 +00:00
committed by GitHub
2 changed files with 5 additions and 11 deletions
+1
View File
@@ -32,6 +32,7 @@ python.pkgs.toPythonModule (
"httpx-socks"
"lxml"
"typer-slim"
"whitenoise"
];
preBuild =
@@ -11,16 +11,18 @@
buildPythonPackage rec {
pname = "whitenoise";
version = "6.9.0";
version = "6.11.0";
pyproject = true;
src = fetchFromGitHub {
owner = "evansd";
repo = "whitenoise";
tag = version;
hash = "sha256-UmM8Az22ql3uUpyY6jj7ky3LelmttFBqGMYlzlNRAHg=";
hash = "sha256-pcU4qa2dlyPfMgyi1O8zME4GukIvKN4MQhFtJJjdn9w=";
};
__darwinAllowLocalNetworking = true;
build-system = [ setuptools ];
dependencies = [ brotli ];
@@ -31,15 +33,6 @@ buildPythonPackage rec {
requests
];
__darwinAllowLocalNetworking = true;
disabledTestPaths = [
# Don't run Django tests
"tests/test_django_whitenoise.py"
"tests/test_runserver_nostatic.py"
"tests/test_storage.py"
];
disabledTests = [
# Test fails with AssertionError
"test_modified"