Commit f8fadd0c authored by linsui's avatar linsui
Browse files

fdroidserver: move to by-name

parent 9b2183cf
Loading
Loading
Loading
Loading
+5 −26
Original line number Diff line number Diff line
{
  lib,
  fetchFromGitLab,
  python3Packages,
  python3,
  fetchPypi,
  apksigner,
  buildPythonApplication,
  python3,
  installShellFiles,
  androguard,
  babel,
  clint,
  defusedxml,
  gitpython,
  libcloud,
  mwclient,
  oscrypto,
  paramiko,
  pillow,
  platformdirs,
  pyasn1,
  pyasn1-modules,
  pycountry,
  python-vagrant,
  pyyaml,
  qrcode,
  requests,
  ruamel-yaml,
  sdkmanager,
  yamllint,
}:

let
  version = "2.3a2";
in
buildPythonApplication {
python3Packages.buildPythonApplication {
  pname = "fdroidserver";
  inherit version;

@@ -69,9 +48,9 @@ buildPythonApplication {

  nativeBuildInputs = [ installShellFiles ];

  build-system = [ babel ];
  build-system = with python3Packages; [ babel ];

  dependencies = [
  dependencies = with python3Packages; [
    androguard
    platformdirs
    clint
+0 −2
Original line number Diff line number Diff line
@@ -5021,8 +5021,6 @@ with pkgs;
  fdroidcl = pkgs.callPackage ../development/mobile/fdroidcl { };
  fdroidserver = python3Packages.callPackage ../development/tools/fdroidserver { };
  fedimint = callPackage ../by-name/fe/fedimint/package.nix {
    inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
  };