aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/tools/devpi-server
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-06-02 23:31:39 -0700
committerJon <jonringer@users.noreply.github.com>2020-06-03 11:29:15 -0700
commit7211e4ef7b7101ded2ae096209bf054e00d7669d (patch)
treea42185560a3a05d1973156ff44383f2dba958fbf /pkgs/development/tools/devpi-server
parent903e0ecd2ff9795ccdb7c98251b71958819735dd (diff)
devpi-server: 5.2.0 -> 5.5.0
Diffstat (limited to 'pkgs/development/tools/devpi-server')
-rw-r--r--pkgs/development/tools/devpi-server/default.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/development/tools/devpi-server/default.nix b/pkgs/development/tools/devpi-server/default.nix
index 59a4a6d00300..4b5499b87bc2 100644
--- a/pkgs/development/tools/devpi-server/default.nix
+++ b/pkgs/development/tools/devpi-server/default.nix
@@ -2,11 +2,11 @@
python3Packages.buildPythonApplication rec {
pname = "devpi-server";
- version = "5.2.0";
+ version = "5.5.0";
src = python3Packages.fetchPypi {
inherit pname version;
- sha256 = "1dapd0bis7pb4fzq5yva7spby5amcsgl1970z5nq1rlprf6qbydg";
+ sha256 = "0lily4a0k13bygx07x2f2q4nkwny0fj34hpac9i6mc70ysdn1hhi";
};
propagatedBuildInputs = with python3Packages; [
@@ -32,12 +32,17 @@ python3Packages.buildPythonApplication rec {
webtest
] ++ stdenv.lib.optionals isPy27 [ mock ];
- # test_genconfig.py needs devpi-server on PATH
# root_passwd_hash tries to write to store
+ # TestMirrorIndexThings tries to write to /var through ngnix
+ # nginx tests try to write to /var
checkPhase = ''
PATH=$PATH:$out/bin HOME=$TMPDIR pytest \
./test_devpi_server --slow -rfsxX \
- -k 'not root_passwd_hash_option'
+ --ignore=test_devpi_server/test_nginx_replica.py \
+ --ignore=test_devpi_server/test_streaming_nginx.py \
+ --ignore=test_devpi_server/test_streaming_replica_nginx.py \
+ -k 'not root_passwd_hash_option \
+ and not TestMirrorIndexThings'
'';
meta = with stdenv.lib;{