mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
35 lines
800 B
Nix
35 lines
800 B
Nix
{ stdenv, pythonPackages, mopidy, mopidy-local-images }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "Mopidy-Iris";
|
|
version = "3.31.2";
|
|
|
|
src = pythonPackages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0639ib5nicrabckjd17wdmhl8n3822gc2p1bn0xv8mq70paspar6";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
mopidy
|
|
mopidy-local-images
|
|
] ++ (with pythonPackages; [
|
|
configobj
|
|
pylast
|
|
spotipy
|
|
raven
|
|
tornado_4
|
|
]);
|
|
|
|
postPatch = "sed -i /tornado/d setup.py";
|
|
|
|
# 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 ];
|
|
};
|
|
}
|