Merge pull request #329954 from dotlambda/python3Packages.ytmusicapi

python312Packages.ytmusicapi: 1.7.5 -> 1.8.0

authored by Robert Schütz and committed by GitHub f4263763 3a2592ce

+4 -8
+4 -8
pkgs/development/python-modules/ytmusicapi/default.nix
··· 4 4 fetchFromGitHub, 5 5 pythonOlder, 6 6 requests, 7 - setuptools, 8 7 setuptools-scm, 9 8 }: 10 9 11 10 buildPythonPackage rec { 12 11 pname = "ytmusicapi"; 13 - version = "1.7.5"; 12 + version = "1.8.0"; 14 13 pyproject = true; 15 14 16 - disabled = pythonOlder "3.8"; 15 + disabled = pythonOlder "3.9"; 17 16 18 17 src = fetchFromGitHub { 19 18 owner = "sigma67"; 20 19 repo = "ytmusicapi"; 21 20 rev = "refs/tags/${version}"; 22 - hash = "sha256-hj2pGT35LCotR96WnyyyRVEiixwru57e3gPhL8tptfk="; 21 + hash = "sha256-PuGGUyQ199Awo0Dqi6xUAAt53WZjvaLiW7bIT4zlMT0="; 23 22 }; 24 23 25 - build-system = [ 26 - setuptools 27 - setuptools-scm 28 - ]; 24 + build-system = [ setuptools-scm ]; 29 25 30 26 dependencies = [ requests ]; 31 27