Skip to content

Commit 3022d8e

Browse files
committed
1 parent 12242b0 commit 3022d8e

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
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";

0 commit comments

Comments
 (0)