From 9e164ae850e90373788c9a05402ef3907c867c84 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 3 Aug 2024 20:17:44 +0200 Subject: [PATCH] python312Packages.deezer-python: 6.2.0 -> 7.0.0 Diff: https://github.com/browniebroke/deezer-python/compare/refs/tags/v6.2.0...v7.0.0 Changelog: https://github.com/browniebroke/deezer-python/releases/tag/v7.0.0 --- .../python-modules/deezer-python/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/deezer-python/default.nix b/pkgs/development/python-modules/deezer-python/default.nix index 0bd136e6fceb..e0b4b3907c37 100644 --- a/pkgs/development/python-modules/deezer-python/default.nix +++ b/pkgs/development/python-modules/deezer-python/default.nix @@ -3,27 +3,27 @@ buildPythonPackage, environs, fetchFromGitHub, + httpx, poetry-core, pytest-mock, pytest-vcr, pytestCheckHook, pythonOlder, - requests, tornado, }: buildPythonPackage rec { pname = "deezer-python"; - version = "6.2.0"; + version = "7.0.0"; pyproject = true; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "browniebroke"; repo = "deezer-python"; rev = "refs/tags/v${version}"; - hash = "sha256-Y1y8FBxpGpNIWCZbel9fdGLGC9VM9h1BvHtUxCZxp/A="; + hash = "sha256-V4M6qRTa7XKbl962Z3y70+v3YCeW65VjeSIv/1Oxnws="; }; postPatch = '' @@ -34,7 +34,7 @@ buildPythonPackage rec { build-system = [ poetry-core ]; dependencies = [ - requests + httpx tornado ];