nixpkgs/pkgs/applications/audio/mopidy/mopify.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
612 B
Nix
Raw Normal View History

{ lib, pythonPackages, fetchPypi, mopidy }:
2014-12-04 17:19:13 +00:00
pythonPackages.buildPythonApplication rec {
pname = "Mopidy-Mopify";
2024-01-24 01:20:27 +00:00
version = "1.7.3";
2014-12-04 17:19:13 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-RlCC+39zC+LeA/QDWPHYx5TrEwOgVrnvcH1Xg12qSLE=";
2014-12-04 17:19:13 +00:00
};
propagatedBuildInputs = with pythonPackages; [ mopidy configobj ];
2014-12-04 17:19:13 +00:00
# no tests implemented
2014-12-04 17:19:13 +00:00
doCheck = false;
meta = with lib; {
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 ];
};
}