anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / audio / mopidy / mopify.nix
blob21ebc32b9d15f790268403cd1b4a0eedd63c08ae
1 { lib, pythonPackages, fetchPypi, mopidy }:
3 pythonPackages.buildPythonApplication rec {
4   pname = "Mopidy-Mopify";
5   version = "1.7.3";
7   src = fetchPypi {
8     inherit pname version;
9     hash = "sha256-RlCC+39zC+LeA/QDWPHYx5TrEwOgVrnvcH1Xg12qSLE=";
10   };
12   propagatedBuildInputs = with pythonPackages; [ mopidy configobj ];
14   # no tests implemented
15   doCheck = false;
17   meta = with lib; {
18     homepage = "https://github.com/dirkgroenen/mopidy-mopify";
19     description = "Mopidy webclient based on the Spotify webbased interface";
20     license = licenses.gpl3;
21     maintainers = [ maintainers.Gonzih ];
22   };