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
676 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";
2024-01-20 01:00:27 +00:00
version = "3.69.3";
2017-07-10 09:18:29 +00:00
src = fetchPypi {
2018-02-27 14:33:45 +00:00
inherit pname version;
2024-01-20 01:00:27 +00:00
sha256 = "sha256-PEAXnapiyxozijR053I7zQYRYLeDOV719L0QbO2r4r4=";
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";
description = "Fully-functional Mopidy web client encompassing Spotify and many other backends";
2017-07-10 09:18:29 +00:00
license = licenses.asl20;
maintainers = [ maintainers.rvolosatovs ];
};
}