Unverified Commit 1c5c0265 authored by Sarah Brofeldt's avatar Sarah Brofeldt Committed by GitHub
Browse files

Merge pull request #293484 from cafkafk/devpi-server-update

devpi-server: 6.9.2 -> 6.10.0
parents 830f5f84 a225b4b8
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@
, platformdirs
, pluggy
, py
, httpx
, pyramid
, pytestCheckHook
, repoze-lru
@@ -27,7 +28,7 @@

buildPythonApplication rec {
  pname = "devpi-server";
  version = "6.9.2";
  version = "6.10.0";
  pyproject = true;

  disabled = pythonOlder "3.7";
@@ -36,7 +37,7 @@ buildPythonApplication rec {
    owner = "devpi";
    repo = "devpi";
    rev = "server-${version}";
    hash = "sha256-HnxWLxOK+6B8O/7lpNjuSUQ0Z7NOmV2n01WFyjow6oU=";
    hash = "sha256-JqYWWItdAgtUtiYSqxUd40tT7ON4oHiDA4/3Uhb01b8=";
  };

  sourceRoot = "${src.name}/server";
@@ -67,6 +68,7 @@ buildPythonApplication rec {
    strictyaml
    waitress
    py
    httpx
  ] ++ passlib.optional-dependencies.argon2;

  nativeCheckInputs = [
@@ -86,7 +88,6 @@ buildPythonApplication rec {
  '';
  pytestFlagsArray = [
    "./test_devpi_server"
    "--slow"
    "-rfsxX"
    "--ignore=test_devpi_server/test_nginx_replica.py"
    "--ignore=test_devpi_server/test_streaming_nginx.py"
@@ -98,6 +99,7 @@ buildPythonApplication rec {
    "test_auth_mirror_url_no_hash"
    "test_auth_mirror_url_with_hash"
    "test_auth_mirror_url_hidden_in_logs"
    "test_simplelinks_timeout"
  ];

  __darwinAllowLocalNetworking = true;