2022-10-02 10:28:46 +00:00
|
|
|
{ lib, fetchFromGitHub, buildPythonApplication, isPy27
|
|
|
|
, aiohttp
|
|
|
|
, appdirs
|
|
|
|
, beautifulsoup4
|
|
|
|
, defusedxml
|
|
|
|
, devpi-common
|
|
|
|
, execnet
|
|
|
|
, itsdangerous
|
|
|
|
, nginx
|
|
|
|
, packaging
|
|
|
|
, passlib
|
|
|
|
, platformdirs
|
|
|
|
, pluggy
|
2022-12-30 16:24:44 +00:00
|
|
|
, py
|
2022-10-02 10:28:46 +00:00
|
|
|
, pyramid
|
|
|
|
, pytestCheckHook
|
|
|
|
, repoze_lru
|
|
|
|
, setuptools
|
|
|
|
, strictyaml
|
|
|
|
, waitress
|
|
|
|
, webtest
|
|
|
|
}:
|
2017-12-04 14:11:12 +00:00
|
|
|
|
2021-09-14 16:47:04 +00:00
|
|
|
|
|
|
|
buildPythonApplication rec {
|
2017-12-04 14:11:12 +00:00
|
|
|
pname = "devpi-server";
|
2022-10-02 10:28:46 +00:00
|
|
|
version = "6.7.0";
|
2022-12-30 16:24:44 +00:00
|
|
|
format = "setuptools";
|
2022-10-02 10:28:46 +00:00
|
|
|
|
|
|
|
disabled = isPy27;
|
2017-12-04 14:11:12 +00:00
|
|
|
|
2020-10-13 22:32:18 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "devpi";
|
|
|
|
repo = "devpi";
|
2022-10-02 10:28:46 +00:00
|
|
|
rev = "server-${version}";
|
|
|
|
hash = "sha256-tevQ/Ocusz2PythGnedP6r4xARgetVosAc8uTD49H3M=";
|
2017-12-04 14:11:12 +00:00
|
|
|
};
|
2021-09-14 16:47:04 +00:00
|
|
|
|
2020-10-13 22:32:18 +00:00
|
|
|
sourceRoot = "source/server";
|
2017-12-04 14:11:12 +00:00
|
|
|
|
2022-11-28 03:21:43 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace tox.ini \
|
|
|
|
--replace "--flake8" ""
|
|
|
|
'';
|
|
|
|
|
2021-09-14 16:47:04 +00:00
|
|
|
propagatedBuildInputs = [
|
2022-10-02 10:28:46 +00:00
|
|
|
aiohttp
|
2019-06-18 00:50:48 +00:00
|
|
|
appdirs
|
2020-10-13 22:32:18 +00:00
|
|
|
defusedxml
|
2022-10-02 10:28:46 +00:00
|
|
|
devpi-common
|
2019-06-18 00:50:48 +00:00
|
|
|
execnet
|
|
|
|
itsdangerous
|
2022-10-02 10:28:46 +00:00
|
|
|
packaging
|
2019-06-18 00:50:48 +00:00
|
|
|
passlib
|
2022-10-02 10:28:46 +00:00
|
|
|
platformdirs
|
2019-06-18 00:50:48 +00:00
|
|
|
pluggy
|
|
|
|
pyramid
|
2022-10-02 10:28:46 +00:00
|
|
|
repoze_lru
|
|
|
|
setuptools
|
2019-06-18 00:50:48 +00:00
|
|
|
strictyaml
|
|
|
|
waitress
|
2022-05-22 14:26:11 +00:00
|
|
|
] ++ passlib.optional-dependencies.argon2;
|
2019-06-18 00:50:48 +00:00
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [
|
2019-06-18 00:50:48 +00:00
|
|
|
beautifulsoup4
|
|
|
|
nginx
|
2022-12-30 16:24:44 +00:00
|
|
|
py
|
2022-10-02 10:28:46 +00:00
|
|
|
pytestCheckHook
|
2019-06-18 00:50:48 +00:00
|
|
|
webtest
|
2022-10-02 10:28:46 +00:00
|
|
|
];
|
2019-06-18 00:50:48 +00:00
|
|
|
|
2019-12-23 17:19:00 +00:00
|
|
|
# root_passwd_hash tries to write to store
|
2020-06-03 06:31:39 +00:00
|
|
|
# TestMirrorIndexThings tries to write to /var through ngnix
|
|
|
|
# nginx tests try to write to /var
|
2020-12-11 14:23:40 +00:00
|
|
|
preCheck = ''
|
|
|
|
export PATH=$PATH:$out/bin
|
|
|
|
export HOME=$TMPDIR
|
2017-12-04 14:11:12 +00:00
|
|
|
'';
|
2020-12-11 14:23:40 +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
|
|
|
|
2021-05-25 21:01:46 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib;{
|
2020-04-01 01:11:51 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|