mopidyPackages.mopidy-spotify: remove unnecessary optional dependencies (#462274)

This commit is contained in:
dotlambda
2025-11-18 07:05:17 +00:00
committed by GitHub
+4 -19
View File
@@ -26,25 +26,10 @@ pythonPackages.buildPythonApplication rec {
pythonPackages.requests
];
optional-dependencies = {
lint = with pythonPackages; [
black
check-manifest
flake8
flake8-bugbear
isort
];
test = with pythonPackages; [
pytest
pytest-cov
responses
];
dev = optional-dependencies.lint ++ optional-dependencies.test ++ [ pythonPackages.tox ];
};
nativeCheckInputs = [ pythonPackages.pytestCheckHook ] ++ optional-dependencies.test;
nativeCheckInputs = [
pythonPackages.pytestCheckHook
pythonPackages.responses
];
pythonImportsCheck = [ "mopidy_spotify" ];