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

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

35 lines
867 B
Nix
Raw Normal View History

2022-11-12 18:23:26 +00:00
{ lib
, python3
, mopidy
}:
2021-09-30 15:46:22 +00:00
python3.pkgs.buildPythonApplication rec {
2021-09-30 15:46:22 +00:00
pname = "mopidy-ytmusic";
version = "0.3.8";
2021-09-30 15:46:22 +00:00
src = python3.pkgs.fetchPypi {
2021-09-30 15:46:22 +00:00
inherit version;
pname = "mopidy_ytmusic";
sha256 = "6b4d8ff9c477dbdd30d0259a009494ebe104cad3f8b37241ae503e5bce4ec2e8";
2021-09-30 15:46:22 +00:00
};
propagatedBuildInputs = [
(mopidy.override { pythonPackages = python3.pkgs; })
python3.pkgs.ytmusicapi
python3.pkgs.pytube
2021-09-30 15:46:22 +00:00
];
pythonImportsCheck = [ "mopidy_ytmusic" ];
# has no tests
2021-09-30 15:46:22 +00:00
doCheck = false;
meta = with lib; {
changelog = "https://github.com/OzymandiasTheGreat/mopidy-ytmusic/blob/v${version}/CHANGELOG.rst";
2021-09-30 15:46:22 +00:00
description = "Mopidy extension for playing music from YouTube Music";
homepage = "https://github.com/OzymandiasTheGreat/mopidy-ytmusic";
2021-09-30 15:46:22 +00:00
license = licenses.asl20;
maintainers = [ maintainers.nickhu ];
};
}