Merge pull request #121392 from daneads/mopidy-podcast
mopidy-podcast: init at 3.0.0
This commit is contained in:
commit
2c21dba881
3 changed files with 34 additions and 0 deletions
|
@ -21,6 +21,8 @@ lib.makeScope newScope (self: with self; {
|
|||
|
||||
mopidy-musicbox-webclient = callPackage ./musicbox-webclient.nix { };
|
||||
|
||||
mopidy-podcast = callPackage ./podcast.nix { };
|
||||
|
||||
mopidy-scrobbler = callPackage ./scrobbler.nix { };
|
||||
|
||||
mopidy-somafm = callPackage ./somafm.nix { };
|
||||
|
|
31
pkgs/applications/audio/mopidy/podcast.nix
Normal file
31
pkgs/applications/audio/mopidy/podcast.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ lib, python3Packages, mopidy }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "mopidy-podcast";
|
||||
version = "3.0.0";
|
||||
|
||||
src = python3Packages.fetchPypi {
|
||||
inherit version;
|
||||
pname = "Mopidy-Podcast";
|
||||
sha256 = "1z2b523yvdpcf8p7m7kczrvaw045lmxzhq4qj00dflxa2yw61qxr";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
mopidy
|
||||
python3Packages.cachetools
|
||||
python3Packages.uritools
|
||||
];
|
||||
|
||||
checkInputs = with python3Packages; [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/tkem/mopidy-podcast";
|
||||
description = "Mopidy extension for browsing and playing podcasts";
|
||||
license = licenses.asl20;
|
||||
maintainers = [
|
||||
maintainers.daneads
|
||||
];
|
||||
};
|
||||
}
|
|
@ -24722,6 +24722,7 @@ in
|
|||
mopidy-mpd
|
||||
mopidy-mpris
|
||||
mopidy-musicbox-webclient
|
||||
mopidy-podcast
|
||||
mopidy-scrobbler
|
||||
mopidy-somafm
|
||||
mopidy-soundcloud
|
||||
|
|
Loading…
Reference in a new issue