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

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

25 lines
624 B
Nix
Raw Normal View History

{ lib, python3Packages, mopidy }:
2020-02-13 08:23:44 +00:00
python3Packages.buildPythonApplication rec {
pname = "Mopidy-MPD";
2022-10-13 14:21:57 +00:00
version = "3.3.0";
2020-02-13 08:23:44 +00:00
src = python3Packages.fetchPypi {
inherit pname version;
2022-10-13 14:21:57 +00:00
sha256 = "sha256-CeLMRqj9cwBvQrOx7XHVV8MjDjwOosONVlsN2o+vTVM=";
2020-02-13 08:23:44 +00:00
};
2022-10-13 14:21:57 +00:00
propagatedBuildInputs = [ mopidy ];
2020-02-13 08:23:44 +00:00
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "mopidy_mpd" ];
meta = with lib; {
2020-02-13 08:23:44 +00:00
homepage = "https://github.com/mopidy/mopidy-mpd";
description = "Mopidy extension for controlling playback from MPD clients";
license = licenses.asl20;
maintainers = [ maintainers.tomahna ];
};
}