From 94701b1d1712a8b19947b03bdb2f37ae785732fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 25 Jul 2024 10:29:38 -0700 Subject: [PATCH] python312Packages.ytmusicapi: 1.7.5 -> 1.8.0 Diff: https://github.com/sigma67/ytmusicapi/compare/refs/tags/1.7.5...1.8.0 Changelog: https://github.com/sigma67/ytmusicapi/releases/tag/1.8.0 --- .../python-modules/ytmusicapi/default.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/ytmusicapi/default.nix b/pkgs/development/python-modules/ytmusicapi/default.nix index cf4f33fdaca0..4d99219d05a2 100644 --- a/pkgs/development/python-modules/ytmusicapi/default.nix +++ b/pkgs/development/python-modules/ytmusicapi/default.nix @@ -4,28 +4,24 @@ fetchFromGitHub, pythonOlder, requests, - setuptools, setuptools-scm, }: buildPythonPackage rec { pname = "ytmusicapi"; - version = "1.7.5"; + version = "1.8.0"; pyproject = true; - disabled = pythonOlder "3.8"; + disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "sigma67"; repo = "ytmusicapi"; rev = "refs/tags/${version}"; - hash = "sha256-hj2pGT35LCotR96WnyyyRVEiixwru57e3gPhL8tptfk="; + hash = "sha256-PuGGUyQ199Awo0Dqi6xUAAt53WZjvaLiW7bIT4zlMT0="; }; - build-system = [ - setuptools - setuptools-scm - ]; + build-system = [ setuptools-scm ]; dependencies = [ requests ];