forked from mirrors/nixpkgs
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
28 lines
729 B
Nix
28 lines
729 B
Nix
{ stdenv, pythonPackages, mopidy, mopidy-local-images }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "mopidy-iris-${version}";
|
|
version = "3.0.5";
|
|
|
|
src = pythonPackages.fetchPypi {
|
|
inherit version;
|
|
pname = "Mopidy-Iris";
|
|
sha256 = "0rabpzmiis13z4qz3vqlsfc9xjkwracafckahnq2cq97qawyq9y9";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
mopidy
|
|
mopidy-local-images
|
|
pythonPackages.configobj
|
|
pythonPackages.pylast
|
|
pythonPackages.spotipy
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/jaedb/Iris;
|
|
description = "A fully-functional Mopidy web client encompassing Spotify and many other backends";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.rvolosatovs ];
|
|
};
|
|
}
|