anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / audio / mopidy / iris.nix
blobbebb4082a40faec36174bd21161f5c3522dc7d01
1 { lib, python3Packages, fetchPypi, mopidy }:
3 python3Packages.buildPythonApplication rec {
4   pname = "Mopidy-Iris";
5   version = "3.69.3";
7   src = fetchPypi {
8     inherit pname version;
9     hash = "sha256-PEAXnapiyxozijR053I7zQYRYLeDOV719L0QbO2r4r4=";
10   };
12   propagatedBuildInputs = [
13     mopidy
14   ] ++ (with python3Packages; [
15     configobj
16     requests
17     tornado
18   ]);
20   # no tests implemented
21   doCheck = false;
23   meta = with lib; {
24     homepage = "https://github.com/jaedb/Iris";
25     description = "Fully-functional Mopidy web client encompassing Spotify and many other backends";
26     license = licenses.asl20;
27     maintainers = [ maintainers.rvolosatovs ];
28   };