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
622 B
Nix
Raw Normal View History

{ lib, python3Packages, mopidy }:
2020-02-13 09:23:44 +01:00
python3Packages.buildPythonApplication rec {
pname = "Mopidy-MPD";
2021-09-30 17:45:50 +02:00
version = "3.2.0";
2020-02-13 09:23:44 +01:00
src = python3Packages.fetchPypi {
inherit pname version;
2021-09-30 17:45:50 +02:00
sha256 = "sha256-oZvKr61lyu7CmXP2A/xtYng1FIUPyveVJMqUuv6UnaM=";
2020-02-13 09:23:44 +01:00
};
propagatedBuildInputs = [mopidy];
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "mopidy_mpd" ];
meta = with lib; {
2020-02-13 09:23:44 +01:00
homepage = "https://github.com/mopidy/mopidy-mpd";
description = "Mopidy extension for controlling playback from MPD clients";
license = licenses.asl20;
maintainers = [ maintainers.tomahna ];
};
}