mopidy-scrobbler: init at 2.0.1
This commit is contained in:
parent
657c280e48
commit
c3920418a5
@ -28,6 +28,8 @@ let
|
|||||||
|
|
||||||
mopidy-musicbox-webclient = callPackage ./musicbox-webclient.nix { };
|
mopidy-musicbox-webclient = callPackage ./musicbox-webclient.nix { };
|
||||||
|
|
||||||
|
mopidy-scrobbler = callPackage ./scrobbler.nix { };
|
||||||
|
|
||||||
mopidy-somafm = callPackage ./somafm.nix { };
|
mopidy-somafm = callPackage ./somafm.nix { };
|
||||||
|
|
||||||
mopidy-soundcloud = callPackage ./soundcloud.nix { };
|
mopidy-soundcloud = callPackage ./soundcloud.nix { };
|
||||||
|
24
pkgs/applications/audio/mopidy/scrobbler.nix
Normal file
24
pkgs/applications/audio/mopidy/scrobbler.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, python3Packages, mopidy }:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication rec {
|
||||||
|
pname = "Mopidy-Scrobbler";
|
||||||
|
version = "2.0.1";
|
||||||
|
|
||||||
|
src = python3Packages.fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "11vxgax4xgkggnq4fr1rh2rcvzspkkimck5p3h4phdj3qpnj0680";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3Packages; [ mopidy pylast ];
|
||||||
|
|
||||||
|
# no tests implemented
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "mopidy_scrobbler" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/mopidy/mopidy-scrobbler";
|
||||||
|
description = "Mopidy extension for scrobbling played tracks to Last.fm.";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ jakeisnt ];
|
||||||
|
};
|
||||||
|
}
|
@ -22913,6 +22913,7 @@ in
|
|||||||
mopidy-mpd
|
mopidy-mpd
|
||||||
mopidy-mpris
|
mopidy-mpris
|
||||||
mopidy-musicbox-webclient
|
mopidy-musicbox-webclient
|
||||||
|
mopidy-scrobbler
|
||||||
mopidy-somafm
|
mopidy-somafm
|
||||||
mopidy-soundcloud
|
mopidy-soundcloud
|
||||||
mopidy-spotify
|
mopidy-spotify
|
||||||
|
Loading…
x
Reference in New Issue
Block a user