File tree Expand file tree Collapse file tree 1 file changed +10
-11
lines changed
pkgs/by-name/py/pysqlrecon Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Original file line number Diff line number Diff line change 1- { lib
2- , fetchFromGitHub
3- , python3
1+ {
2+ lib ,
3+ fetchFromGitHub ,
4+ python3 ,
45} :
56
67python3 . 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" ;
You can’t perform that action at this time.
0 commit comments