From e014cb68ccd512fde1de37a678607d98735cff38 Mon Sep 17 00:00:00 2001 From: purpole <101905225+purpole@users.noreply.github.com> Date: Tue, 24 Jun 2025 20:14:52 +0200 Subject: [PATCH 1/2] sccmhunter: 1.0.9 -> 1.0.10 --- pkgs/by-name/sc/sccmhunter/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sc/sccmhunter/package.nix b/pkgs/by-name/sc/sccmhunter/package.nix index b47540c07f19..be7568e72786 100644 --- a/pkgs/by-name/sc/sccmhunter/package.nix +++ b/pkgs/by-name/sc/sccmhunter/package.nix @@ -5,14 +5,14 @@ }: python3Packages.buildPythonApplication rec { pname = "sccmhunter"; - version = "1.0.9"; + version = "1.0.10"; pyproject = true; src = fetchFromGitHub { owner = "garrettfoster13"; repo = "sccmhunter"; rev = "v${version}"; - hash = "sha256-Db+kBLy2ejIKKjCskAE4arppk/sq9qQ3w1nCQmeLYhs="; + hash = "sha256-h7P+ry4J26Hm1s9U37t1EDWBaYRL32WA3sk8caA1edg="; }; build-system = with python3Packages; [ From d0c18c0adc86d4e38cd957708d55353e287bf133 Mon Sep 17 00:00:00 2001 From: purpole <101905225+purpole@users.noreply.github.com> Date: Sun, 29 Jun 2025 08:42:07 +0200 Subject: [PATCH 2/2] sccmhunter: use python3.12 --- pkgs/by-name/sc/sccmhunter/package.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/sc/sccmhunter/package.nix b/pkgs/by-name/sc/sccmhunter/package.nix index be7568e72786..2d4a4f773e44 100644 --- a/pkgs/by-name/sc/sccmhunter/package.nix +++ b/pkgs/by-name/sc/sccmhunter/package.nix @@ -1,9 +1,11 @@ { lib, fetchFromGitHub, - python3Packages, + # Pinned to Python 3.12 because future-1.0.0 is not supported for Python 3.13: + # error: future-1.0.0 not supported for interpreter python3.13 + python312Packages, }: -python3Packages.buildPythonApplication rec { +python312Packages.buildPythonApplication rec { pname = "sccmhunter"; version = "1.0.10"; pyproject = true; @@ -15,11 +17,11 @@ python3Packages.buildPythonApplication rec { hash = "sha256-h7P+ry4J26Hm1s9U37t1EDWBaYRL32WA3sk8caA1edg="; }; - build-system = with python3Packages; [ + build-system = with python312Packages; [ setuptools ]; - dependencies = with python3Packages; [ + dependencies = with python312Packages; [ cmd2 cryptography impacket