From 8cd136856afca37358399c208afbd129b0aa5a71 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 1 Oct 2025 09:06:22 +0200 Subject: [PATCH] python313Packages.pylast: 5.5.0 -> 6.0.0 Diff: https://github.com/pylast/pylast/compare/5.5.0...6.0.0 Changelog: https://github.com/pylast/pylast/releases/tag/6.0.0 --- pkgs/development/python-modules/pylast/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/pylast/default.nix b/pkgs/development/python-modules/pylast/default.nix index e5a196a38858..3a010b5fe456 100644 --- a/pkgs/development/python-modules/pylast/default.nix +++ b/pkgs/development/python-modules/pylast/default.nix @@ -6,23 +6,20 @@ hatch-vcs, hatchling, httpx, - importlib-metadata, + pytest-random-order, pytestCheckHook, - pythonOlder, }: buildPythonPackage rec { pname = "pylast"; - version = "5.5.0"; + version = "6.0.0"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "pylast"; repo = "pylast"; tag = version; - hash = "sha256-mPdFG3wqdAyluD37cy2q6oO/x9NgXpOb57s4nU05EzQ="; + hash = "sha256-mwPiHTLFvaCFPZGqi0+T223Ickbm5JP2MJj4gqaj/qo="; }; build-system = [ @@ -30,9 +27,10 @@ buildPythonPackage rec { hatchling ]; - dependencies = [ httpx ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; + dependencies = [ httpx ]; nativeCheckInputs = [ + pytest-random-order pytestCheckHook flaky ];