mopidy-podcast: init at 3.0.0

Mopidy extension for browsing and playing podcasts

Update maintainer + add py3 tests

authored by

031d7e3e-4476-4fef-a076-26150f8ecc2f and committed by
Dan Eads
75468c39 468c34be

+34
+2
pkgs/applications/audio/mopidy/default.nix
··· 21 21 22 22 mopidy-musicbox-webclient = callPackage ./musicbox-webclient.nix { }; 23 23 24 + mopidy-podcast = callPackage ./podcast.nix { }; 25 + 24 26 mopidy-scrobbler = callPackage ./scrobbler.nix { }; 25 27 26 28 mopidy-somafm = callPackage ./somafm.nix { };
+31
pkgs/applications/audio/mopidy/podcast.nix
··· 1 + { lib, python3Packages, mopidy }: 2 + 3 + python3Packages.buildPythonApplication rec { 4 + pname = "mopidy-podcast"; 5 + version = "3.0.0"; 6 + 7 + src = python3Packages.fetchPypi { 8 + inherit version; 9 + pname = "Mopidy-Podcast"; 10 + sha256 = "1z2b523yvdpcf8p7m7kczrvaw045lmxzhq4qj00dflxa2yw61qxr"; 11 + }; 12 + 13 + propagatedBuildInputs = [ 14 + mopidy 15 + python3Packages.cachetools 16 + python3Packages.uritools 17 + ]; 18 + 19 + checkInputs = with python3Packages; [ 20 + pytestCheckHook 21 + ]; 22 + 23 + meta = with lib; { 24 + homepage = "https://github.com/tkem/mopidy-podcast"; 25 + description = "Mopidy extension for browsing and playing podcasts"; 26 + license = licenses.asl20; 27 + maintainers = [ 28 + maintainers.daneads 29 + ]; 30 + }; 31 + }
+1
pkgs/top-level/all-packages.nix
··· 24705 24705 mopidy-mpd 24706 24706 mopidy-mpris 24707 24707 mopidy-musicbox-webclient 24708 + mopidy-podcast 24708 24709 mopidy-scrobbler 24709 24710 mopidy-somafm 24710 24711 mopidy-soundcloud