mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
31 lines
735 B
Nix
31 lines
735 B
Nix
{ stdenv, pythonPackages, mopidy, mopidy-local-images }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "Mopidy-Iris";
|
|
version = "3.36.0";
|
|
|
|
src = pythonPackages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1qxb3rfjxmwihcm0nrarrgp9x7zr3kjipzn5igj0d57gpi2bdwgv";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
mopidy
|
|
mopidy-local-images
|
|
] ++ (with pythonPackages; [
|
|
configobj
|
|
requests
|
|
tornado_4
|
|
]);
|
|
|
|
# no tests implemented
|
|
doCheck = false;
|
|
|
|
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 ];
|
|
};
|
|
}
|