mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #237526 from uninsane/pr/gpodder-3.11.1
gpodder: 3.10.21 -> 3.11.1
This commit is contained in:
commit
f6f60c349e
1 changed files with 17 additions and 4 deletions
|
@ -1,18 +1,27 @@
|
|||
{ lib, fetchFromGitHub, python3, python3Packages, intltool
|
||||
, glibcLocales, gnome, gtk3, wrapGAppsHook
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, gitUpdater
|
||||
, glibcLocales
|
||||
, gnome
|
||||
, gobject-introspection
|
||||
, gtk3
|
||||
, intltool
|
||||
, python3
|
||||
, python3Packages
|
||||
, wrapGAppsHook
|
||||
, xdg-utils
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "gpodder";
|
||||
version = "3.10.21";
|
||||
version = "3.11.1";
|
||||
format = "other";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0n73jm5ypsj962gpr0dk10lqh83giqsczm63wchyhmrkyf1wgga1";
|
||||
sha256 = "Ns03MFhd4ZLtyeQTLTgLWY2Ot6gmrksFMOZm8jFaLIg=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
|
@ -72,6 +81,10 @@ python3Packages.buildPythonApplication rec {
|
|||
LC_ALL=C PYTHONPATH=src/:$PYTHONPATH pytest tests --ignore=src/gpodder/utilwin32ctypes.py --ignore=src/mygpoclient --cov=gpodder
|
||||
'';
|
||||
|
||||
makeWrapperArgs = [ "--suffix PATH : ${lib.makeBinPath [ xdg-utils ]}" ];
|
||||
|
||||
passthru.updateScript = gitUpdater {};
|
||||
|
||||
meta = with lib; {
|
||||
description = "A podcatcher written in python";
|
||||
longDescription = ''
|
||||
|
|
Loading…
Reference in a new issue