Merge pull request #94478 from mweinelt/mopidy-tunein

mopidy-tunein: init at 1.0.0
This commit is contained in:
Martin Weinelt 2020-08-13 04:18:46 +02:00 committed by GitHub
commit 631e604bab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 31 additions and 0 deletions

View file

@ -40,6 +40,8 @@ let
mopidy-iris = callPackage ./iris.nix { };
mopidy-tunein = callPackage ./tunein.nix { };
};
in self

View file

@ -0,0 +1,28 @@
{ stdenv, python3Packages, mopidy }:
python3Packages.buildPythonApplication rec {
pname = "mopidy-tunein";
version = "1.0.0";
src = python3Packages.fetchPypi {
inherit version;
pname = "Mopidy-TuneIn";
sha256 = "0insasf4w8ajsqjh5zmax7pkzmrk1p245vh4y8ddicldj45p6qfj";
};
propagatedBuildInputs = [
mopidy
];
# tests fail with "ValueError: Namespace Gst not available" in mopidy itself
doCheck = false;
pythonImportsCheck = [ "mopidy_tunein.tunein" ];
meta = with stdenv.lib; {
description = "Mopidy extension for playing music from tunein.";
homepage = "https://github.com/kingosticks/mopidy-tunein";
license = licenses.asl20;
maintainers = with maintainers; [ hexa ];
};
}

View file

@ -21462,6 +21462,7 @@ in
mopidy-soundcloud
mopidy-spotify
mopidy-spotify-tunigo
mopidy-tunein
mopidy-youtube;
motif = callPackage ../development/libraries/motif { };