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

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

28 lines
622 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchPypi, mopidy }:
2020-01-24 09:26:35 +00:00
python3Packages.buildPythonApplication rec {
pname = "mopidy-mpris";
2021-09-30 15:42:53 +00:00
version = "3.0.3";
2020-01-24 09:26:35 +00:00
src = fetchPypi {
2020-01-24 09:26:35 +00:00
inherit version;
pname = "Mopidy-MPRIS";
2021-09-30 15:42:53 +00:00
sha256 = "sha256-rHQgNIyludTEL7RDC8dIpyGTMOt1Tazn6i/orKlSP4U=";
2020-01-24 09:26:35 +00:00
};
propagatedBuildInputs = [
mopidy
python3Packages.pydbus
];
doCheck = false;
meta = with lib; {
2020-06-10 14:57:40 +00:00
homepage = "https://www.mopidy.com/";
2020-01-24 09:26:35 +00:00
description = "Mopidy extension for controlling Mopidy through D-Bus using the MPRIS specification";
license = licenses.asl20;
maintainers = [ maintainers.nickhu ];
};
}