nixpkgs/pkgs/by-name/fd/fdroidserver/package.nix
2024-09-13 19:55:04 +08:00

106 lines
2.1 KiB
Nix

{
lib,
fetchFromGitLab,
python3Packages,
python3,
fetchPypi,
apksigner,
installShellFiles,
}:
let
version = "2.3a2";
in
python3Packages.buildPythonApplication {
pname = "fdroidserver";
inherit version;
pyproject = true;
src = fetchFromGitLab {
owner = "fdroid";
repo = "fdroidserver";
rev = version;
hash = "sha256-nsAFBZqxo4XVWU6nBjo2T6VhU8U4I8h/FRXd1L240rk=";
};
pythonRelaxDeps = [
"androguard"
"pyasn1"
"pyasn1-modules"
];
postPatch = ''
substituteInPlace fdroidserver/common.py \
--replace-fail "FDROID_PATH = os.path.realpath(os.path.join(os.path.dirname(__file__), '..'))" "FDROID_PATH = '$out/bin'"
'';
preConfigure = ''
${python3.pythonOnBuildForHost.interpreter} setup.py compile_catalog
'';
postInstall = ''
patchShebangs gradlew-fdroid
install -m 0755 gradlew-fdroid $out/bin
installShellCompletion --cmd fdroid \
--bash completion/bash-completion
'';
nativeBuildInputs = [ installShellFiles ];
build-system = with python3Packages; [ babel ];
dependencies = with python3Packages; [
androguard
platformdirs
clint
defusedxml
gitpython
libcloud
mwclient
oscrypto
paramiko
pillow
pyasn1
pyasn1-modules
pycountry
python-vagrant
pyyaml
qrcode
requests
(ruamel-yaml.overrideAttrs (old: {
src = fetchPypi {
pname = "ruamel.yaml";
version = "0.17.21";
hash = "sha256-i3zml6LyEnUqNcGsQURx3BbEJMlXO+SSa1b/P10jt68=";
};
}))
sdkmanager
yamllint
];
makeWrapperArgs = [
"--prefix"
"PATH"
":"
"${lib.makeBinPath [ apksigner ]}"
];
# no tests
doCheck = false;
pythonImportsCheck = [ "fdroidserver" ];
meta = {
homepage = "https://gitlab.com/fdroid/fdroidserver";
changelog = "https://gitlab.com/fdroid/fdroidserver/-/blob/${version}/CHANGELOG.md";
description = "Server and tools for F-Droid, the Free Software repository system for Android";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [
linsui
jugendhacker
];
mainProgram = "fdroid";
};
}