Merge pull request #314759 from fabaff/smbmap-bump

smbmap: 1.10.2 -> 1.10.3
This commit is contained in:
Nick Cao 2024-05-26 10:15:02 -04:00 committed by GitHub
commit 5722918317
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,21 +1,24 @@
{ lib
, fetchFromGitHub
, python3
{
lib,
fetchFromGitHub,
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "smbmap";
version = "1.10.2";
format = "setuptools";
version = "1.10.3";
pyproject = true;
src = fetchFromGitHub {
owner = "ShawnDEvans";
repo = "smbmap";
rev = "refs/tags/v${version}";
hash = "sha256-6+kO2Wfz3gGABS4fGxoebCubzvFAaJIGnMPA+k1mckc=";
hash = "sha256-ZzNiNAGf0FYfo3Zow4crWFQQb4+GhUeHpwJfuM5P9Ds=";
};
propagatedBuildInputs = with python3.pkgs; [
build-system = with python3.pkgs; [ setuptools ];
dependencies = with python3.pkgs; [
impacket
pyasn1
pycrypto
@ -26,16 +29,14 @@ python3.pkgs.buildPythonApplication rec {
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"smbmap"
];
pythonImportsCheck = [ "smbmap" ];
meta = with lib; {
description = "SMB enumeration tool";
mainProgram = "smbmap";
homepage = "https://github.com/ShawnDEvans/smbmap";
changelog = "https://github.com/ShawnDEvans/smbmap/releases/tag/v${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
mainProgram = "smbmap";
};
}