3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/mopidy/iris.nix

30 lines
684 B
Nix
Raw Normal View History

{ lib, python3Packages, mopidy }:
2017-07-10 10:18:29 +01:00
python3Packages.buildPythonApplication rec {
2018-02-27 14:33:45 +00:00
pname = "Mopidy-Iris";
2021-11-08 15:34:41 +00:00
version = "3.60.0";
2017-07-10 10:18:29 +01:00
src = python3Packages.fetchPypi {
2018-02-27 14:33:45 +00:00
inherit pname version;
2021-11-08 15:34:41 +00:00
sha256 = "18w6qqmxzn8psiacybryxailm826f3j1wgiv0c03fbdsy6kr5f7l";
2017-07-10 10:18:29 +01:00
};
propagatedBuildInputs = [
mopidy
] ++ (with python3Packages; [
2018-02-27 14:33:45 +00:00
configobj
requests
2020-08-29 13:23:55 +01:00
tornado
2018-02-27 14:33:45 +00:00
]);
# no tests implemented
doCheck = false;
2017-07-10 10:18:29 +01:00
meta = with lib; {
homepage = "https://github.com/jaedb/Iris";
2017-07-10 10:18:29 +01:00
description = "A fully-functional Mopidy web client encompassing Spotify and many other backends";
license = licenses.asl20;
maintainers = [ maintainers.rvolosatovs ];
};
}