mopidy-youtube 0 -> 1 attrpath: mopidy-youtube Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/7m4sgcmqbvh1jixrajyyhpm2gj2gfplv-packages.json.drv building '/nix/store/7m4sgcmqbvh1jixrajyyhpm2gj2gfplv-packages.json.drv'... Going to be running update for following packages: - mopidy-youtube-3.6 Press Enter key to continue... Running update for: - mopidy-youtube-3.6: UPDATING ... - mopidy-youtube-3.6: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/applications/audio/mopidy/youtube.nix b/pkgs/applications/audio/mopidy/youtube.nix index 198f4ee49201..20958429c30e 100644 --- a/pkgs/applications/audio/mopidy/youtube.nix +++ b/pkgs/applications/audio/mopidy/youtube.nix @@ -6,14 +6,14 @@ python3.pkgs.buildPythonApplication rec { pname = "mopidy-youtube"; - version = "3.6"; + version = "3.7"; format = "setuptools"; src = fetchFromGitHub { owner = "natumbri"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-Mp8eCVNGokJRwmYiZYCYRwV1QVDV02Uqfh6fGcPgJss="; + hash = "sha256-iFt7r8Ljymc+grNJiOClTHkZOeo7AcYpcNc8tLMPROk="; }; propagatedBuildInputs = with python3.pkgs; [ No auto update branch exists Old version 3.6" not present in master derivation file with contents: { lib , fetchFromGitHub , python3 , mopidy }: python3.pkgs.buildPythonApplication rec { pname = "mopidy-youtube"; version = "3.7"; format = "setuptools"; src = fetchFromGitHub { owner = "natumbri"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-iFt7r8Ljymc+grNJiOClTHkZOeo7AcYpcNc8tLMPROk="; }; propagatedBuildInputs = with python3.pkgs; [ beautifulsoup4 cachetools pykka requests youtube-dl ytmusicapi ] ++ [ mopidy ]; nativeCheckInputs = 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" ]; meta = with lib; { description = "Mopidy extension for playing music from YouTube"; homepage = "https://github.com/natumbri/mopidy-youtube"; license = licenses.asl20; maintainers = with maintainers; [ ]; }; }