mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
41 lines
824 B
Nix
41 lines
824 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "smbmap";
|
|
version = "1.9.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ShawnDEvans";
|
|
repo = "smbmap";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-NsxmH1W5VUckGvqqTIrxhaVz0l7gsHmc8KJuvC/iVbA=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
impacket
|
|
pyasn1
|
|
pycrypto
|
|
configparser
|
|
termcolor
|
|
];
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"smbmap"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "SMB enumeration tool";
|
|
homepage = "https://github.com/ShawnDEvans/smbmap";
|
|
changelog = "https://github.com/ShawnDEvans/smbmap/releases/tag/v${version}";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|