Merge pull request #303486 from r-ryantm/auto-update/enum4linux-ng

enum4linux-ng: 1.3.2 -> 1.3.3
This commit is contained in:
Fabian Affolter 2024-04-12 10:18:30 +02:00 committed by GitHub
commit 7d33a9563f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,32 +1,31 @@
{ lib {
, fetchFromGitHub lib,
, python3 fetchFromGitHub,
, samba python3,
samba,
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "enum4linux-ng"; pname = "enum4linux-ng";
version = "1.3.2"; version = "1.3.3";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "cddmp"; owner = "cddmp";
repo = "enum4linux-ng"; repo = "enum4linux-ng";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-O3TZcCn2kRLrMjQPVg8F5Q2ri968xRbXrdnfytfMkYM="; hash = "sha256-VpNYgdgvsQG5UcxoyyLCj5ijJdIKKhCSqnHTvTgD4lA=";
}; };
build-system = with python3.pkgs; [ build-system = with python3.pkgs; [ setuptools ];
setuptools
];
dependencies = [ dependencies =
samba [ samba ]
] ++ (with python3.pkgs; [ ++ (with python3.pkgs; [
impacket impacket
ldap3 ldap3
pyyaml pyyaml
]); ]);
# It's only a script and not a Python module. Project has no tests # It's only a script and not a Python module. Project has no tests
doCheck = false; doCheck = false;