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