Skip to content

Commit af023ae

Browse files
authored
sccmhunter: 1.0.9 -> 1.0.10 (#419644)
2 parents ef7def5 + d0c18c0 commit af023ae

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

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

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
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";
8-
version = "1.0.9";
10+
version = "1.0.10";
911
pyproject = true;
1012

1113
src = fetchFromGitHub {
1214
owner = "garrettfoster13";
1315
repo = "sccmhunter";
1416
rev = "v${version}";
15-
hash = "sha256-Db+kBLy2ejIKKjCskAE4arppk/sq9qQ3w1nCQmeLYhs=";
17+
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)