mini-calc: 3.3.2 -> 3.3.3 (#364716)
[NixPkgs.git] / pkgs / applications / audio / mopidy / iris.nix
blobd07b294528320ca4e7c1fecab63c27efd61e07f5
2   lib,
3   python3Packages,
4   fetchPypi,
5   mopidy,
6 }:
8 python3Packages.buildPythonApplication rec {
9   pname = "Mopidy-Iris";
10   version = "3.69.3";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-PEAXnapiyxozijR053I7zQYRYLeDOV719L0QbO2r4r4=";
15   };
17   propagatedBuildInputs =
18     [
19       mopidy
20     ]
21     ++ (with python3Packages; [
22       configobj
23       requests
24       tornado
25     ]);
27   # no tests implemented
28   doCheck = false;
30   meta = with lib; {
31     homepage = "https://github.com/jaedb/Iris";
32     description = "Fully-functional Mopidy web client encompassing Spotify and many other backends";
33     license = licenses.asl20;
34     maintainers = [ maintainers.rvolosatovs ];
35   };