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