nixpkgs/pkgs/applications/audio/gpodder/default.nix

82 lines
1.7 KiB
Nix
Raw Normal View History

2017-12-31 02:38:39 +01:00
{ stdenv, fetchFromGitHub, python3, python3Packages, intltool
, glibcLocales, gnome3, gtk3, wrapGAppsHook
, gobject-introspection
}:
2014-07-20 21:12:05 +02:00
2017-12-31 02:38:39 +01:00
python3Packages.buildPythonApplication rec {
pname = "gpodder";
2020-06-26 12:00:41 +02:00
version = "3.10.16";
2017-12-31 02:38:39 +01:00
format = "other";
2014-07-20 21:12:05 +02:00
2017-12-31 02:38:39 +01:00
src = fetchFromGitHub {
2019-02-03 17:34:41 +01:00
owner = pname;
repo = pname;
2017-12-31 02:38:39 +01:00
rev = version;
2020-06-26 12:00:41 +02:00
sha256 = "0pbpaasd7kj6y25nm45y1qyb9sxd4570f7g6zkfcpf6pa3nx7qkq";
2014-07-20 21:12:05 +02:00
};
2019-04-14 13:51:15 +02:00
patches = [
./disable-autoupdate.patch
];
postPatch = with stdenv.lib; ''
sed -i -re 's,^( *gpodder_dir *= *).*,\1"'"$out"'",' bin/gpodder
'';
2017-12-31 02:38:39 +01:00
nativeBuildInputs = [
intltool
wrapGAppsHook
glibcLocales
];
buildInputs = [
python3
gobject-introspection
2019-02-13 22:47:50 +01:00
gnome3.adwaita-icon-theme
];
2014-07-20 21:12:05 +02:00
2017-12-31 02:38:39 +01:00
checkInputs = with python3Packages; [
coverage minimock
];
doCheck = true;
propagatedBuildInputs = with python3Packages; [
feedparser
dbus-python
mygpoclient
pygobject3
eyeD3
podcastparser
html5lib
gtk3
];
2014-07-20 21:12:05 +02:00
2017-12-31 02:38:39 +01:00
makeFlags = [
"PREFIX=$(out)"
"share/applications/gpodder-url-handler.desktop"
"share/applications/gpodder.desktop"
"share/dbus-1/services/org.gpodder.service"
];
2017-10-25 20:54:19 +02:00
preBuild = ''
2017-12-31 02:38:39 +01:00
export LC_ALL="en_US.UTF-8"
2017-10-25 20:54:19 +02:00
'';
2017-12-31 02:38:39 +01:00
installCheckPhase = ''
LC_ALL=C PYTHONPATH=./src:$PYTHONPATH python3 -m gpodder.unittests
2014-08-07 17:49:16 +02:00
'';
2017-03-21 17:12:07 +01:00
meta = with stdenv.lib; {
description = "A podcatcher written in python";
longDescription = ''
gPodder downloads and manages free audio and video content (podcasts)
for you. Listen directly on your computer or on your mobile devices.
'';
homepage = "http://gpodder.org/";
2017-03-21 17:12:07 +01:00
license = licenses.gpl3;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ skeidel mic92 ];
};
2014-07-20 21:12:05 +02:00
}