2014-12-04 20:19:13 +03:00
|
|
|
{ stdenv, fetchurl, pythonPackages, mopidy }:
|
|
|
|
|
2016-02-19 15:12:11 +03:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2014-12-04 20:19:13 +03:00
|
|
|
name = "mopidy-mopify-${version}";
|
|
|
|
|
2016-04-12 15:05:05 +03:00
|
|
|
version = "1.5.17";
|
2014-12-04 20:19:13 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/dirkgroenen/mopidy-mopify/archive/${version}.tar.gz";
|
2016-04-12 15:05:05 +03:00
|
|
|
sha256 = "1qi7f5i87ygn486gxc84njl22y84xrwabpz58y5a1hw7z1lp7l8s";
|
2014-12-04 20:19:13 +03:00
|
|
|
};
|
|
|
|
|
2015-11-20 15:48:30 +03:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ mopidy configobj ];
|
2014-12-04 20:19:13 +03:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/dirkgroenen/mopidy-mopify;
|
2015-04-28 11:54:58 +03:00
|
|
|
description = "A mopidy webclient based on the Spotify webbased interface";
|
2014-12-04 20:19:13 +03:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.Gonzih ];
|
|
|
|
};
|
|
|
|
}
|