summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-03-24 20:55:32 +0100
committerGitHub <noreply@github.com>2022-03-24 20:55:32 +0100
commit9f84ed0b43d2886019ff22ec6701242ac9ed1dea (patch)
tree89421da31c14449939730d233811f7b38019f55d /pkgs
parenta4ec6f67c41348bc68b0c0d3f78259e8bf8044f6 (diff)
mopidy-youtube: re-enable tests
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/audio/mopidy/youtube.nix22
1 files changed, 18 insertions, 4 deletions
diff --git a/pkgs/applications/audio/mopidy/youtube.nix b/pkgs/applications/audio/mopidy/youtube.nix
index d983ae8498de..386e372d7987 100644
--- a/pkgs/applications/audio/mopidy/youtube.nix
+++ b/pkgs/applications/audio/mopidy/youtube.nix
@@ -7,14 +7,13 @@
python3.pkgs.buildPythonApplication rec {
pname = "mopidy-youtube";
version = "3.5";
-
- disabled = python3.pythonOlder "3.7";
+ format = "setuptools";
src = fetchFromGitHub {
owner = "natumbri";
repo = pname;
rev = "v${version}";
- sha256 = "0zn645rylr3wj45rg4mqrldibb5b24c85rdpcdc9d0a5q7528nl6";
+ hash = "sha256-hlokysFFgZZYY7flghgRq6wVG824kpcLkXxk6nMhxn4=";
};
propagatedBuildInputs = with python3.pkgs; [
@@ -28,7 +27,22 @@ python3.pkgs.buildPythonApplication rec {
mopidy
];
- doCheck = false;
+ checkInputs = with python3.pkgs; [
+ vcrpy
+ pytestCheckHook
+ ];
+
+ disabledTests = [
+ # Test requires a YouTube API key
+ "test_get_default_config"
+ ];
+
+ disabledTestPaths = [
+ # Disable tests which interact with Youtube
+ "tests/test_api.py"
+ "tests/test_backend.py"
+ "tests/test_youtube.py"
+ ];
pythonImportsCheck = [
"mopidy_youtube"