Skip to content

Commit 610b3b8

Browse files
authored
python312Packages.impacket: 0.11.0 -> 0.12.0 (#342531)
2 parents a961a14 + 3022d8e commit 610b3b8

File tree

2 files changed

+17
-14
lines changed

2 files changed

+17
-14
lines changed

pkgs/by-name/py/pysqlrecon/package.nix

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,40 @@
1-
{ lib
2-
, fetchFromGitHub
3-
, python3
1+
{
2+
lib,
3+
fetchFromGitHub,
4+
python3,
45
}:
56

67
python3.pkgs.buildPythonApplication rec {
78
pname = "pysqlrecon";
8-
version = "0.2.0";
9+
version = "0.3.0";
910
pyproject = true;
1011

1112
src = fetchFromGitHub {
1213
owner = "Tw1sm";
1314
repo = "PySQLRecon";
1415
rev = "refs/tags/v${version}";
15-
hash = "sha256-AJCvGpOjnh5ih5HrrpI+x0zyB7P6rMGL70707UunhEM=";
16+
hash = "sha256-+pme4uOgsh6iZEL73PaR1Y55r+Z/SPEVD2QWBsnMsNs=";
1617
};
1718

1819
pythonRelaxDeps = [
20+
"impacket"
1921
"rich"
2022
"typer"
2123
];
2224

23-
nativeBuildInputs = with python3.pkgs; [
24-
poetry-core
25-
];
25+
nativeBuildInputs = with python3.pkgs; [ poetry-core ];
2626

2727
propagatedBuildInputs = with python3.pkgs; [
2828
impacket
29+
pycryptodome
2930
rich
3031
typer
3132
];
3233

3334
# Project has no tests
3435
doCheck = false;
3536

36-
pythonImportsCheck = [
37-
"pysqlrecon"
38-
];
37+
pythonImportsCheck = [ "pysqlrecon" ];
3938

4039
meta = with lib; {
4140
description = "Offensive MSSQL toolkit";

pkgs/development/python-modules/impacket/default.nix

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
ldap3,
99
ldapdomaindump,
1010
pyasn1,
11+
pyasn1-modules,
1112
pycryptodomex,
1213
pyopenssl,
1314
pythonOlder,
@@ -18,16 +19,18 @@
1819

1920
buildPythonPackage rec {
2021
pname = "impacket";
21-
version = "0.11.0";
22+
version = "0.12.0";
2223
pyproject = true;
2324

24-
disabled = pythonOlder "3.7";
25+
disabled = pythonOlder "3.8";
2526

2627
src = fetchPypi {
2728
inherit pname version;
28-
hash = "sha256-7kA5tNKu3o9fZEeLxZ+qyGA2eWviTeqNwY8An7CQXko=";
29+
hash = "sha256-iVh9G4NqUiDXSEjJNHV5YrOCiG3KixtKDETWk/JgBkM=";
2930
};
3031

32+
pythonRelaxDeps = [ "pyopenssl" ];
33+
3134
build-system = [ setuptools ];
3235

3336
dependencies = [
@@ -37,6 +40,7 @@ buildPythonPackage rec {
3740
ldap3
3841
ldapdomaindump
3942
pyasn1
43+
pyasn1-modules
4044
pycryptodomex
4145
pyopenssl
4246
setuptools

0 commit comments

Comments
 (0)