nixpkgs-suyu/pkgs/applications/audio/mopidy-mopify/default.nix
Ryan Mulligan bb2aa1da26 mopidy-mopify: 1.5.17 -> 1.6.0
Semi-automatic update. These checks were performed:

- built on NixOS
- found 1.6.0 with grep in /nix/store/k988x3a5gm4ff987yynn97gzcxh16hbl-mopidy-mopify-1.6.0
- found 1.6.0 in filename of file in /nix/store/k988x3a5gm4ff987yynn97gzcxh16hbl-mopidy-mopify-1.6.0

cc "@Gonzih"
2018-02-27 06:18:22 -08:00

23 lines
666 B
Nix

{ stdenv, fetchurl, pythonPackages, mopidy }:
pythonPackages.buildPythonApplication rec {
name = "mopidy-mopify-${version}";
version = "1.6.0";
src = fetchurl {
url = "https://github.com/dirkgroenen/mopidy-mopify/archive/${version}.tar.gz";
sha256 = "1qjl40izb11jx939hh9ibxf1747j1fxbc1qv0lmjpsq5mri7jpim";
};
propagatedBuildInputs = with pythonPackages; [ mopidy configobj ];
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/dirkgroenen/mopidy-mopify;
description = "A mopidy webclient based on the Spotify webbased interface";
license = licenses.gpl3;
maintainers = [ maintainers.Gonzih ];
};
}