fdroidserver: 2.3a1 -> 2.3a2 (#339722)

This commit is contained in:
Guillaume Girol 2024-09-14 17:03:14 +02:00 committed by GitHub
commit 64f1b1421a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 31 deletions

View file

@ -1,37 +1,17 @@
{ {
lib, lib,
fetchFromGitLab, fetchFromGitLab,
python3Packages,
python3,
fetchPypi, fetchPypi,
apksigner, apksigner,
appdirs,
buildPythonApplication,
python3,
installShellFiles, installShellFiles,
androguard,
babel,
clint,
defusedxml,
gitpython,
libcloud,
mwclient,
oscrypto,
paramiko,
pillow,
pyasn1,
pyasn1-modules,
python-vagrant,
pyyaml,
qrcode,
requests,
ruamel-yaml,
sdkmanager,
yamllint,
}: }:
let let
version = "2.3a1"; version = "2.3a2";
in in
buildPythonApplication { python3Packages.buildPythonApplication {
pname = "fdroidserver"; pname = "fdroidserver";
inherit version; inherit version;
@ -40,8 +20,8 @@ buildPythonApplication {
src = fetchFromGitLab { src = fetchFromGitLab {
owner = "fdroid"; owner = "fdroid";
repo = "fdroidserver"; repo = "fdroidserver";
rev = "2.3a1"; rev = version;
hash = "sha256-K6P5yGx2ZXHJZ/VyHTbQAObsvcfnOatrpwiW+ixLTuA="; hash = "sha256-nsAFBZqxo4XVWU6nBjo2T6VhU8U4I8h/FRXd1L240rk=";
}; };
pythonRelaxDeps = [ pythonRelaxDeps = [
@ -68,11 +48,11 @@ buildPythonApplication {
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];
buildInputs = [ babel ]; build-system = with python3Packages; [ babel ];
propagatedBuildInputs = [ dependencies = with python3Packages; [
androguard androguard
appdirs platformdirs
clint clint
defusedxml defusedxml
gitpython gitpython
@ -83,6 +63,7 @@ buildPythonApplication {
pillow pillow
pyasn1 pyasn1
pyasn1-modules pyasn1-modules
pycountry
python-vagrant python-vagrant
pyyaml pyyaml
qrcode qrcode

View file

@ -5025,8 +5025,6 @@ with pkgs;
fdroidcl = pkgs.callPackage ../development/mobile/fdroidcl { }; fdroidcl = pkgs.callPackage ../development/mobile/fdroidcl { };
fdroidserver = python3Packages.callPackage ../development/tools/fdroidserver { };
fedimint = callPackage ../by-name/fe/fedimint/package.nix { fedimint = callPackage ../by-name/fe/fedimint/package.nix {
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
}; };