nixpkgs-suyu/pkgs/applications/audio/mopidy-mopify/default.nix

24 lines
631 B
Nix
Raw Normal View History

2014-12-04 18:19:13 +01:00
{ stdenv, fetchurl, pythonPackages, mopidy }:
pythonPackages.buildPythonPackage rec {
name = "mopidy-mopify-${version}";
2015-04-06 09:27:31 +02:00
version = "1.4.1";
2014-12-04 18:19:13 +01:00
src = fetchurl {
url = "https://github.com/dirkgroenen/mopidy-mopify/archive/${version}.tar.gz";
2015-04-06 09:27:31 +02:00
sha256 = "1i752vnkgqfps5vym63rbsh1xm141z8r68d80bi076zr6zbzdjj9";
2014-12-04 18:19:13 +01:00
};
propagatedBuildInputs = [ mopidy ];
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/dirkgroenen/mopidy-mopify;
2015-04-28 10:54:58 +02:00
description = "A mopidy webclient based on the Spotify webbased interface";
2014-12-04 18:19:13 +01:00
license = licenses.gpl3;
maintainers = [ maintainers.Gonzih ];
};
}