python312Packages.ytmusicapi: refactor

+3 -3
+3 -3
pkgs/development/python-modules/ytmusicapi/default.nix
··· 21 hash = "sha256-HMWb9NScT4rRMFsUXw6TW/T0P1eH0a46OegUZ0JceiE="; 22 }; 23 24 - nativeBuildInputs = [ 25 setuptools 26 setuptools-scm 27 ]; 28 29 - propagatedBuildInputs = [ 30 requests 31 ]; 32 ··· 38 39 meta = with lib; { 40 description = "Python API for YouTube Music"; 41 - mainProgram = "ytmusicapi"; 42 homepage = "https://github.com/sigma67/ytmusicapi"; 43 changelog = "https://github.com/sigma67/ytmusicapi/releases/tag/${version}"; 44 license = licenses.mit; 45 maintainers = with maintainers; [ dotlambda ]; 46 }; 47 }
··· 21 hash = "sha256-HMWb9NScT4rRMFsUXw6TW/T0P1eH0a46OegUZ0JceiE="; 22 }; 23 24 + build-system = [ 25 setuptools 26 setuptools-scm 27 ]; 28 29 + dependencies = [ 30 requests 31 ]; 32 ··· 38 39 meta = with lib; { 40 description = "Python API for YouTube Music"; 41 homepage = "https://github.com/sigma67/ytmusicapi"; 42 changelog = "https://github.com/sigma67/ytmusicapi/releases/tag/${version}"; 43 license = licenses.mit; 44 maintainers = with maintainers; [ dotlambda ]; 45 + mainProgram = "ytmusicapi"; 46 }; 47 }