nixpkgs/pkgs/development/tools/devpi-server/default.nix

65 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages, nginx }:
2017-12-04 14:11:12 +00:00
2019-06-18 01:50:48 +01:00
python3Packages.buildPythonApplication rec {
2017-12-04 14:11:12 +00:00
pname = "devpi-server";
version = "6.0.0.dev0";
2017-12-04 14:11:12 +00:00
src = fetchFromGitHub {
owner = "devpi";
repo = "devpi";
rev = "68ee291ef29a93f6d921d4927aec8d13919b4a4c";
sha256 = "1ivd5dy9f2gq07w8n2gywa0n0d9wv8644l53ni9fz7i69jf8q2fm";
2017-12-04 14:11:12 +00:00
};
sourceRoot = "source/server";
2017-12-04 14:11:12 +00:00
2019-06-18 01:50:48 +01:00
propagatedBuildInputs = with python3Packages; [
2019-09-03 04:00:00 +01:00
py
2019-06-18 01:50:48 +01:00
appdirs
devpi-common
defusedxml
2019-06-18 01:50:48 +01:00
execnet
itsdangerous
2019-09-03 04:00:00 +01:00
repoze_lru
2019-06-18 01:50:48 +01:00
passlib
pluggy
pyramid
strictyaml
waitress
];
checkInputs = with python3Packages; [
beautifulsoup4
nginx
pytestCheckHook
2019-09-03 04:00:00 +01:00
pytest-flake8
2019-06-18 01:50:48 +01:00
webtest
] ++ lib.optionals isPy27 [ mock ];
2019-06-18 01:50:48 +01:00
2019-12-23 17:19:00 +00:00
# root_passwd_hash tries to write to store
2020-06-03 07:31:39 +01:00
# TestMirrorIndexThings tries to write to /var through ngnix
# nginx tests try to write to /var
preCheck = ''
export PATH=$PATH:$out/bin
export HOME=$TMPDIR
2017-12-04 14:11:12 +00:00
'';
pytestFlagsArray = [
"./test_devpi_server"
"--slow"
"-rfsxX"
"--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"
];
disabledTests = [
"root_passwd_hash_option"
"TestMirrorIndexThings"
];
2017-12-04 14:11:12 +00:00
meta = with lib;{
homepage = "http://doc.devpi.net";
2017-12-04 14:11:12 +00:00
description = "Github-style pypi index server and packaging meta tool";
license = licenses.mit;
maintainers = with maintainers; [ makefu ];
};
}