From 945458cb9c69ef03d782aecc9c281007a7ccf6a6 Mon Sep 17 00:00:00 2001 From: Thomas Butter Date: Thu, 7 May 2026 13:58:08 +0000 Subject: [PATCH] nextinspace: 2.0.5 -> 3.0.1 --- pkgs/by-name/ne/nextinspace/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/ne/nextinspace/package.nix b/pkgs/by-name/ne/nextinspace/package.nix index 1fa33346c1e5..7358b27c857c 100644 --- a/pkgs/by-name/ne/nextinspace/package.nix +++ b/pkgs/by-name/ne/nextinspace/package.nix @@ -6,28 +6,28 @@ python3.pkgs.buildPythonApplication (finalAttrs: { pname = "nextinspace"; - version = "2.0.5"; + version = "3.0.1"; pyproject = true; src = fetchFromGitHub { owner = "not-stirred"; repo = "nextinspace"; tag = "v${finalAttrs.version}"; - hash = "sha256-CrhzCvIA3YAFsWvdemvK1RLMacsM5RtgMjLeiqz5MwY="; + hash = "sha256-oEvRxaxx1pIco2+jm/3HUN0a0nqdo2VosCisM0MWTjU="; }; - nativeBuildInputs = with python3.pkgs; [ + build-system = with python3.pkgs; [ poetry-core ]; - pythonPath = with python3.pkgs; [ + dependencies = with python3.pkgs; [ requests tzlocal colorama ]; nativeCheckInputs = with python3.pkgs; [ - pytest-lazy-fixture + pytest-lazy-fixtures pytestCheckHook requests-mock ];