mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 11:34:13 +00:00
mopidy-tunein: init at 1.0.0
This commit is contained in:
parent
c62ae96beb
commit
e89ba5ac56
@ -40,6 +40,8 @@ let
|
|||||||
|
|
||||||
mopidy-iris = callPackage ./iris.nix { };
|
mopidy-iris = callPackage ./iris.nix { };
|
||||||
|
|
||||||
|
mopidy-tunein = callPackage ./tunein.nix { };
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
in self
|
in self
|
||||||
|
28
pkgs/applications/audio/mopidy/tunein.nix
Normal file
28
pkgs/applications/audio/mopidy/tunein.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -21365,6 +21365,7 @@ in
|
|||||||
mopidy-soundcloud
|
mopidy-soundcloud
|
||||||
mopidy-spotify
|
mopidy-spotify
|
||||||
mopidy-spotify-tunigo
|
mopidy-spotify-tunigo
|
||||||
|
mopidy-tunein
|
||||||
mopidy-youtube;
|
mopidy-youtube;
|
||||||
|
|
||||||
motif = callPackage ../development/libraries/motif { };
|
motif = callPackage ../development/libraries/motif { };
|
||||||
|
Loading…
Reference in New Issue
Block a user