Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

devpi-server: 6.9.2 -> 6.10.0 #293484

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions pkgs/development/tools/devpi-server/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
, platformdirs
, pluggy
, py
, httpx
, pyramid
, pytestCheckHook
, repoze-lru
Expand All @@ -27,7 +28,7 @@

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

disabled = pythonOlder "3.7";
Expand All @@ -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";
Expand Down Expand Up @@ -67,6 +68,7 @@ buildPythonApplication rec {
strictyaml
waitress
py
httpx
] ++ passlib.optional-dependencies.argon2;

nativeCheckInputs = [
Expand All @@ -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"
Expand All @@ -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;
Expand Down
Loading