Merge pull request #258884 from dotlambda/ytmusicapi-1.3.0

python310Packages.ytmusicapi: 1.2.1 -> 1.3.0

authored by Nick Cao and committed by GitHub 3fe593b3 f04ec6ac

+3 -14
+2 -2
pkgs/development/python-modules/ytmusicapi/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "ytmusicapi"; 12 - version = "1.2.1"; 12 + version = "1.3.0"; 13 13 format = "pyproject"; 14 14 15 15 disabled = pythonOlder "3.8"; ··· 18 18 owner = "sigma67"; 19 19 repo = "ytmusicapi"; 20 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-YgV3kCvCOLNXb3cWBVXRuzH4guuvPpXVojOnSnrXj20="; 21 + hash = "sha256-dJckAQ0sWdP7I10khcyKGKsIcDTXQxZtP7B8JHlIZEo="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+1 -12
pkgs/tools/audio/spotdl/default.nix
··· 6 6 }: 7 7 8 8 let 9 - python = python3.override { 10 - packageOverrides = self: super: { 11 - ytmusicapi = super.ytmusicapi.overridePythonAttrs (old: rec { 12 - version = "0.25.1"; 13 - src = fetchPypi { 14 - inherit (old) pname; 15 - inherit version; 16 - hash = "sha256-uc/fgDetSYaCRzff0SzfbRhs3TaKrfE2h6roWkkj8yQ="; 17 - }; 18 - }); 19 - }; 20 - }; 9 + python = python3; 21 10 in python.pkgs.buildPythonApplication rec { 22 11 pname = "spotdl"; 23 12 version = "4.2.1";