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: 4.9.0 -> 5.1.0 #67984

Merged
merged 1 commit into from Sep 3, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions pkgs/development/tools/devpi-server/default.nix
@@ -1,20 +1,21 @@
{ stdenv, python3Packages, nginx }:
{ stdenv, python3Packages, nginx }:

python3Packages.buildPythonApplication rec {
name = "${pname}-${version}";
pname = "devpi-server";
version = "4.9.0";
version = "5.1.0";

src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0cx0nv1qqv8lg6p1v8dv5val0dxnc3229c15imibl9wrhrffjbg9";
sha256 = "254fceee846532a5fec4e6bf52a59eb8f236efc657678a542b5200da4bb3abbc";
};

propagatedBuildInputs = with python3Packages; [
py
appdirs
devpi-common
execnet
itsdangerous
repoze_lru
passlib
pluggy
pyramid
Expand All @@ -24,13 +25,12 @@ python3Packages.buildPythonApplication rec {

checkInputs = with python3Packages; [
beautifulsoup4
mock
nginx
pytest
pytest-flakes
pytest-flake8
pytestpep8
webtest
];
] ++ stdenv.lib.optionals isPy27 [ mock ];

# test_genconfig.py needs devpi-server on PATH
checkPhase = ''
Expand Down