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-08-16 14:57:11 +01:00
version = "3.58.0";
2017-07-10 10:18:29 +01:00
src = python3Packages.fetchPypi {
2018-02-27 14:33:45 +00:00
inherit pname version;
2021-08-16 14:57:11 +01:00
sha256 = "1bsmc4p7b6v4mm8fi9zsy0knzdccnz1dc6ckrdr18kw2ji0hiyx2";
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 ];
};
}