2015-12-04 18:53:01 -08:00
|
|
|
{ stdenv, fetchurl, pythonPackages, mopidy }:
|
|
|
|
|
2016-02-19 04:12:11 -08:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2018-06-23 06:27:58 -07:00
|
|
|
pname = "mopidy-gmusic";
|
2018-07-30 16:07:05 -07:00
|
|
|
version = "3.0.0";
|
2015-12-04 18:53:01 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/mopidy/mopidy-gmusic/archive/v${version}.tar.gz";
|
2018-07-30 16:07:05 -07:00
|
|
|
sha256 = "0a2s4xrrhnkv85rx4w5bj6ih9xm34jy0q71fdvbzmi827g9dw5sz";
|
2015-12-04 18:53:01 -08:00
|
|
|
};
|
|
|
|
|
2016-11-24 14:42:27 -08:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
mopidy
|
2017-05-07 03:55:45 -07:00
|
|
|
pythonPackages.requests
|
2016-11-24 14:42:27 -08:00
|
|
|
pythonPackages.gmusicapi
|
2019-01-21 08:52:00 -08:00
|
|
|
pythonPackages.cachetools
|
2016-11-24 14:42:27 -08:00
|
|
|
];
|
2015-12-04 18:53:01 -08:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.mopidy.com/";
|
2015-12-04 18:53:01 -08:00
|
|
|
description = "Mopidy extension for playing music from Google Play Music";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.jgillich ];
|
|
|
|
hydraPlatforms = [];
|
|
|
|
};
|
|
|
|
}
|