From f19d467c70d525cc91dc87401c9dcac362c2a260 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 30 Nov 2025 12:15:10 +0100 Subject: [PATCH] python313Packages.pylast: 6.0.0 -> 7.0.0 Changelog: https://github.com/pylast/pylast/releases/tag/7.0.0 --- pkgs/development/python-modules/pylast/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pylast/default.nix b/pkgs/development/python-modules/pylast/default.nix index 3a010b5fe456..239a20e05a88 100644 --- a/pkgs/development/python-modules/pylast/default.nix +++ b/pkgs/development/python-modules/pylast/default.nix @@ -7,19 +7,20 @@ hatchling, httpx, pytest-random-order, + pytest-recording, pytestCheckHook, }: buildPythonPackage rec { pname = "pylast"; - version = "6.0.0"; + version = "7.0.0"; pyproject = true; src = fetchFromGitHub { owner = "pylast"; repo = "pylast"; tag = version; - hash = "sha256-mwPiHTLFvaCFPZGqi0+T223Ickbm5JP2MJj4gqaj/qo="; + hash = "sha256-u+wQxw0F/1oB8Kr4terSPo/8/RyPhiKxU0GruZo73H0="; }; build-system = [ @@ -30,9 +31,10 @@ buildPythonPackage rec { dependencies = [ httpx ]; nativeCheckInputs = [ - pytest-random-order - pytestCheckHook flaky + pytest-random-order + pytest-recording + pytestCheckHook ]; pythonImportsCheck = [ "pylast" ];