Merge pull request #141173 from fabaff/clean-mopidy-youtube

This commit is contained in:
Sandro 2021-10-10 19:45:31 +02:00 committed by GitHub
commit 824014aa54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,29 +1,56 @@
{ lib, python3Packages, mopidy }: { lib
, fetchFromGitHub
, python3
, mopidy
}:
python3Packages.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "mopidy-youtube"; pname = "mopidy-youtube";
version = "3.4"; version = "3.4";
src = python3Packages.fetchPypi { disabled = python3.pythonOlder "3.7";
inherit version;
pname = "Mopidy-YouTube"; src = fetchFromGitHub {
sha256 = "sha256-996MNByMcKq1woDGK6jsmAHS9TOoBrwSGgPmcShvTRw="; owner = "natumbri";
repo = pname;
rev = "v${version}";
sha256 = "0lm6nn926qkrwzvj64yracdixfrnv5zk243msjskrnlzkhgk01rk";
}; };
postPatch = "sed s/bs4/beautifulsoup4/ -i setup.cfg"; propagatedBuildInputs = with python3.pkgs; [
propagatedBuildInputs = with python3Packages; [
beautifulsoup4 beautifulsoup4
cachetools cachetools
pykka
requests
youtube-dl youtube-dl
ytmusicapi ytmusicapi
] ++ [ mopidy ]; ] ++ [
mopidy
];
doCheck = false; checkInputs = with python3.pkgs; [
vcrpy
pytestCheckHook
];
disabledTests = [
# Test requires a YouTube API key
"test_get_default_config"
];
disabledTestPaths = [
# Fails with an import error
"tests/test_backend.py"
];
pythonImportsCheck = [
"mopidy_youtube"
];
meta = with lib; { meta = with lib; {
description = "Mopidy extension for playing music from YouTube"; description = "Mopidy extension for playing music from YouTube";
homepage = "https://github.com/natumbri/mopidy-youtube";
license = licenses.asl20; license = licenses.asl20;
maintainers = [ maintainers.spwhitt ]; maintainers = with maintainers; [ spwhitt ];
}; };
} }