File tree Expand file tree Collapse file tree 2 files changed +17
-14
lines changed
development/python-modules/impacket Expand file tree Collapse file tree 2 files changed +17
-14
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" ;
Original file line number Diff line number Diff line change 88 ldap3 ,
99 ldapdomaindump ,
1010 pyasn1 ,
11+ pyasn1-modules ,
1112 pycryptodomex ,
1213 pyopenssl ,
1314 pythonOlder ,
1819
1920buildPythonPackage 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
You can’t perform that action at this time.
0 commit comments