1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-15 09:03:48 +00:00
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-10-02 09:03:55 +01:00
version = "3.59.0";
2017-07-10 10:18:29 +01:00
src = python3Packages.fetchPypi {
2018-02-27 14:33:45 +00:00
inherit pname version;
2021-10-02 09:03:55 +01:00
sha256 = "0llvn0khl07ni34jvb3a1r6rnkf0ljizhpqrs5bdishfhpwyhm0j";
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 ];
};
}