From c1aa53d9a5f7c6eb9a79164dbe6a703b3ef78f87 Mon Sep 17 00:00:00 2001 From: Yueh-Shun Li Date: Thu, 20 Feb 2025 03:10:54 +0800 Subject: [PATCH] stig: use python3Package instead of python310Packages --- pkgs/by-name/st/stig/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/st/stig/package.nix b/pkgs/by-name/st/stig/package.nix index 7c6dec75cee6..03e1ea67b271 100644 --- a/pkgs/by-name/st/stig/package.nix +++ b/pkgs/by-name/st/stig/package.nix @@ -1,12 +1,12 @@ { lib, fetchFromGitHub, - python310Packages, + python3Packages, testers, stig, }: -python310Packages.buildPythonApplication rec { +python3Packages.buildPythonApplication rec { pname = "stig"; # This project has a different concept for pre release / alpha, # Read the project's README for details: https://github.com/rndusr/stig#stig @@ -19,7 +19,7 @@ python310Packages.buildPythonApplication rec { sha256 = "sha256-lSFI4/DxWl17KFgLXZ7c5nW/e5IUGN7s8Gm6wTM5ZWg="; }; - propagatedBuildInputs = with python310Packages; [ + propagatedBuildInputs = with python3Packages; [ urwid urwidtrees aiohttp @@ -30,7 +30,7 @@ python310Packages.buildPythonApplication rec { setproctitle ]; - nativeCheckInputs = with python310Packages; [ + nativeCheckInputs = with python3Packages; [ asynctest pytestCheckHook ];