nixpkgs/pkgs/applications/audio/mopidy/iris.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
679 B
Nix
Raw Normal View History

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