2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, pythonPackages, mopidy }:
|
2014-12-04 17:19:13 +00:00
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2018-02-27 16:26:26 +00:00
|
|
|
pname = "Mopidy-Mopify";
|
|
|
|
version = "1.6.1";
|
2014-12-04 17:19:13 +00:00
|
|
|
|
2018-02-27 16:26:26 +00:00
|
|
|
src = pythonPackages.fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "93ad2b3d38b1450c8f2698bb908b0b077a96b3f64cdd6486519e518132e23a5c";
|
2014-12-04 17:19:13 +00:00
|
|
|
};
|
|
|
|
|
2015-11-20 12:48:30 +00:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ mopidy configobj ];
|
2014-12-04 17:19:13 +00:00
|
|
|
|
2018-02-27 16:26:26 +00:00
|
|
|
# no tests implemented
|
2014-12-04 17:19:13 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/dirkgroenen/mopidy-mopify";
|
2015-04-28 09:54:58 +01:00
|
|
|
description = "A mopidy webclient based on the Spotify webbased interface";
|
2014-12-04 17:19:13 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.Gonzih ];
|
|
|
|
};
|
|
|
|
}
|