Skip to content

Commit d0c18c0

Browse files
committed
sccmhunter: use python3.12
1 parent e014cb6 commit d0c18c0

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pkgs/by-name/sc/sccmhunter/package.nix

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
lib,
33
fetchFromGitHub,
4-
python3Packages,
4+
# Pinned to Python 3.12 because future-1.0.0 is not supported for Python 3.13:
5+
# error: future-1.0.0 not supported for interpreter python3.13
6+
python312Packages,
57
}:
6-
python3Packages.buildPythonApplication rec {
8+
python312Packages.buildPythonApplication rec {
79
pname = "sccmhunter";
810
version = "1.0.10";
911
pyproject = true;
@@ -15,11 +17,11 @@ python3Packages.buildPythonApplication rec {
1517
hash = "sha256-h7P+ry4J26Hm1s9U37t1EDWBaYRL32WA3sk8caA1edg=";
1618
};
1719

18-
build-system = with python3Packages; [
20+
build-system = with python312Packages; [
1921
setuptools
2022
];
2123

22-
dependencies = with python3Packages; [
24+
dependencies = with python312Packages; [
2325
cmd2
2426
cryptography
2527
impacket

0 commit comments

Comments
 (0)