From fc309ef60dc25ac99154ec1c4ebd6abd2a83606a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 1 Sep 2025 11:26:41 -0700 Subject: [PATCH] python3Packages.ytmusicapi: 1.11.0 -> 1.11.1 Diff: https://github.com/sigma67/ytmusicapi/compare/1.11.0...1.11.1 Changelog: https://github.com/sigma67/ytmusicapi/releases/tag/1.11.1 --- pkgs/development/python-modules/ytmusicapi/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/ytmusicapi/default.nix b/pkgs/development/python-modules/ytmusicapi/default.nix index 749bca4f0e89..7b6c3da247b6 100644 --- a/pkgs/development/python-modules/ytmusicapi/default.nix +++ b/pkgs/development/python-modules/ytmusicapi/default.nix @@ -2,23 +2,20 @@ lib, buildPythonPackage, fetchFromGitHub, - pythonOlder, requests, setuptools-scm, }: buildPythonPackage rec { pname = "ytmusicapi"; - version = "1.11.0"; + version = "1.11.1"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "sigma67"; repo = "ytmusicapi"; tag = version; - hash = "sha256-7GaxWLGmyxy5RlLoqXXmTM67eoIDf9IB3qjohZcNupU="; + hash = "sha256-ZgzrXVBvITAW01hgFfFw13BcEVLxxhOzgrJSs+Bn3wg="; }; build-system = [ setuptools-scm ];