Unverified Commit e2ec455a authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

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

parents efe5306e c4e71ec2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ python.pkgs.toPythonModule (
      "httpx-socks"
      "lxml"
      "typer-slim"
      "whitenoise"
    ];

    preBuild =
+4 −11
Original line number Diff line number Diff line
@@ -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"