112 lines
2.1 KiB
Nix
112 lines
2.1 KiB
Nix
{ lib
|
|
, fetchFromGitLab
|
|
, fetchPypi
|
|
, apksigner
|
|
, buildPythonApplication
|
|
, python3
|
|
, pythonRelaxDepsHook
|
|
, androguard
|
|
, babel
|
|
, clint
|
|
, defusedxml
|
|
, gitpython
|
|
, libcloud
|
|
, mwclient
|
|
, paramiko
|
|
, pillow
|
|
, pyasn1
|
|
, pyasn1-modules
|
|
, python-vagrant
|
|
, pyyaml
|
|
, qrcode
|
|
, requests
|
|
, ruamel-yaml
|
|
, yamllint
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "fdroidserver";
|
|
version = "2.2.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "fdroid";
|
|
repo = "fdroidserver";
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-+Y1YTgELsX834WIrhx/NX34yLMHdkKM+YUNvnHPiC/s=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"pyasn1"
|
|
"pyasn1-modules"
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace fdroidserver/common.py \
|
|
--replace "FDROID_PATH = os.path.realpath(os.path.join(os.path.dirname(__file__), '..'))" "FDROID_PATH = '$out/bin'"
|
|
'';
|
|
|
|
preConfigure = ''
|
|
${python3.pythonForBuild.interpreter} setup.py compile_catalog
|
|
'';
|
|
|
|
postInstall = ''
|
|
patchShebangs gradlew-fdroid
|
|
install -m 0755 gradlew-fdroid $out/bin
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
babel
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
androguard
|
|
clint
|
|
defusedxml
|
|
gitpython
|
|
libcloud
|
|
mwclient
|
|
paramiko
|
|
pillow
|
|
pyasn1
|
|
pyasn1-modules
|
|
python-vagrant
|
|
pyyaml
|
|
qrcode
|
|
requests
|
|
(ruamel-yaml.overrideAttrs (old: {
|
|
src = fetchPypi {
|
|
pname = "ruamel.yaml";
|
|
version = "0.17.21";
|
|
hash = "sha256-i3zml6LyEnUqNcGsQURx3BbEJMlXO+SSa1b/P10jt68=";
|
|
};
|
|
}))
|
|
yamllint
|
|
];
|
|
|
|
makeWrapperArgs = [
|
|
"--prefix"
|
|
"PATH"
|
|
":"
|
|
"${lib.makeBinPath [ apksigner ]}"
|
|
];
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"fdroidserver"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/f-droid/fdroidserver";
|
|
changelog = "https://github.com/f-droid/fdroidserver/blob/${version}/CHANGELOG.md";
|
|
description = "Server and tools for F-Droid, the Free Software repository system for Android";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [ linsui jugendhacker ];
|
|
};
|
|
}
|