python312Packages.powerfox: init at 1.1.0 (#371207)
[NixPkgs.git] / pkgs / applications / audio / mopidy / mopify.nix
blobca27c0f717062647f2d30b707f01f358553be86c
2   lib,
3   pythonPackages,
4   fetchPypi,
5   mopidy,
6 }:
8 pythonPackages.buildPythonApplication rec {
9   pname = "Mopidy-Mopify";
10   version = "1.7.3";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-RlCC+39zC+LeA/QDWPHYx5TrEwOgVrnvcH1Xg12qSLE=";
15   };
17   propagatedBuildInputs = with pythonPackages; [
18     mopidy
19     configobj
20   ];
22   # no tests implemented
23   doCheck = false;
25   meta = with lib; {
26     homepage = "https://github.com/dirkgroenen/mopidy-mopify";
27     description = "Mopidy webclient based on the Spotify webbased interface";
28     license = licenses.gpl3;
29     maintainers = [ maintainers.Gonzih ];
30   };