mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
24 lines
667 B
Nix
24 lines
667 B
Nix
{ stdenv, fetchurl, pythonPackages, mopidy }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "mopidy-mopify-${version}";
|
|
|
|
version = "1.5.17";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/dirkgroenen/mopidy-mopify/archive/${version}.tar.gz";
|
|
sha256 = "1qi7f5i87ygn486gxc84njl22y84xrwabpz58y5a1hw7z1lp7l8s";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|