mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
63 lines
1.3 KiB
Nix
63 lines
1.3 KiB
Nix
{ docker
|
|
, fetchFromGitLab
|
|
, python
|
|
, lib }:
|
|
|
|
python.pkgs.buildPythonApplication rec {
|
|
version = "1.1.9";
|
|
pname = "fdroidserver";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "fdroid";
|
|
repo = "fdroidserver";
|
|
rev = version;
|
|
sha256 = "098dcg8jdi4q1prfjmd2lbhcyzb8fmmfhbxhid4kqx8vcv7r0iql";
|
|
};
|
|
|
|
patchPhase = ''
|
|
substituteInPlace fdroidserver/common.py --replace "FDROID_PATH = os.path.realpath(os.path.join(os.path.dirname(__file__), '..'))" "FDROID_PATH = '$out/bin'"
|
|
substituteInPlace setup.py --replace "pyasn1-modules == 0.2.1" "pyasn1-modules"
|
|
'';
|
|
|
|
preConfigure = ''
|
|
${python.interpreter} setup.py compile_catalog
|
|
'';
|
|
postInstall = ''
|
|
patchShebangs gradlew-fdroid
|
|
install -m 0755 gradlew-fdroid $out/bin
|
|
'';
|
|
|
|
buildInputs = [ python.pkgs.Babel ];
|
|
|
|
propagatedBuildInputs = with python.pkgs; [
|
|
androguard
|
|
clint
|
|
defusedxml
|
|
docker
|
|
docker-py
|
|
GitPython
|
|
libcloud
|
|
mwclient
|
|
paramiko
|
|
pillow
|
|
pyasn1
|
|
pyasn1-modules
|
|
python-vagrant
|
|
pyyaml
|
|
qrcode
|
|
requests
|
|
ruamel_yaml
|
|
];
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://f-droid.org";
|
|
description = "Server and tools for F-Droid, the Free Software repository system for Android";
|
|
license = licenses.agpl3;
|
|
maintainers = [ lib.maintainers.pmiddend ];
|
|
};
|
|
|
|
}
|