2023-05-25 11:49:37 +00:00
|
|
|
{ lib, pythonPackages, fetchPypi, 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";
|
2024-01-24 01:20:27 +00:00
|
|
|
version = "1.7.3";
|
2014-12-04 17:19:13 +00:00
|
|
|
|
2023-05-25 11:49:37 +00:00
|
|
|
src = fetchPypi {
|
2018-02-27 16:26:26 +00:00
|
|
|
inherit pname version;
|
2024-07-13 16:25:56 +00:00
|
|
|
hash = "sha256-RlCC+39zC+LeA/QDWPHYx5TrEwOgVrnvcH1Xg12qSLE=";
|
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;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/dirkgroenen/mopidy-mopify";
|
2015-04-28 08:54:58 +00:00
|
|
|
description = "Mopidy webclient based on the Spotify webbased interface";
|
2014-12-04 17:19:13 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.Gonzih ];
|
|
|
|
};
|
|
|
|
}
|