Merge pull request #237526 from uninsane/pr/gpodder-3.11.1

gpodder: 3.10.21 -> 3.11.1

authored by Jörg Thalheim and committed by GitHub f6f60c34 a51cad73

+17 -4
+17 -4
pkgs/applications/audio/gpodder/default.nix
··· 1 - { lib, fetchFromGitHub, python3, python3Packages, intltool 2 - , glibcLocales, gnome, gtk3, wrapGAppsHook 3 , gobject-introspection 4 }: 5 6 python3Packages.buildPythonApplication rec { 7 pname = "gpodder"; 8 - version = "3.10.21"; 9 format = "other"; 10 11 src = fetchFromGitHub { 12 owner = pname; 13 repo = pname; 14 rev = version; 15 - sha256 = "0n73jm5ypsj962gpr0dk10lqh83giqsczm63wchyhmrkyf1wgga1"; 16 }; 17 18 patches = [ ··· 71 LC_ALL=C PYTHONPATH=src/:$PYTHONPATH pytest --ignore=tests --ignore=src/gpodder/utilwin32ctypes.py --doctest-modules src/gpodder/util.py src/gpodder/jsonconfig.py 72 LC_ALL=C PYTHONPATH=src/:$PYTHONPATH pytest tests --ignore=src/gpodder/utilwin32ctypes.py --ignore=src/mygpoclient --cov=gpodder 73 ''; 74 75 meta = with lib; { 76 description = "A podcatcher written in python";
··· 1 + { lib 2 + , fetchFromGitHub 3 + , gitUpdater 4 + , glibcLocales 5 + , gnome 6 , gobject-introspection 7 + , gtk3 8 + , intltool 9 + , python3 10 + , python3Packages 11 + , wrapGAppsHook 12 + , xdg-utils 13 }: 14 15 python3Packages.buildPythonApplication rec { 16 pname = "gpodder"; 17 + version = "3.11.1"; 18 format = "other"; 19 20 src = fetchFromGitHub { 21 owner = pname; 22 repo = pname; 23 rev = version; 24 + sha256 = "Ns03MFhd4ZLtyeQTLTgLWY2Ot6gmrksFMOZm8jFaLIg="; 25 }; 26 27 patches = [ ··· 80 LC_ALL=C PYTHONPATH=src/:$PYTHONPATH pytest --ignore=tests --ignore=src/gpodder/utilwin32ctypes.py --doctest-modules src/gpodder/util.py src/gpodder/jsonconfig.py 81 LC_ALL=C PYTHONPATH=src/:$PYTHONPATH pytest tests --ignore=src/gpodder/utilwin32ctypes.py --ignore=src/mygpoclient --cov=gpodder 82 ''; 83 + 84 + makeWrapperArgs = [ "--suffix PATH : ${lib.makeBinPath [ xdg-utils ]}" ]; 85 + 86 + passthru.updateScript = gitUpdater {}; 87 88 meta = with lib; { 89 description = "A podcatcher written in python";