python313Packages.python3-nmap: init at 1.9.2

Library which helps in using nmap port scanner

https://github.com/nmmapper/python3-nmap
This commit is contained in:
Fabian Affolter
2025-12-26 09:48:53 +01:00
parent af84f9d270
commit 7dfe048323
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
simplejson,
}:
buildPythonPackage rec {
pname = "python3-nmap";
version = "1.9.2";
pyproject = true;
src = fetchFromGitHub {
owner = "nmmapper";
repo = "python3-nmap";
tag = version;
hash = "sha256-d/rH3aRNh9SDyVvbiTFCQyfZ6amtnH2iSwKqTOlVLNY=";
};
build-system = [ setuptools ];
dependencies = [ simplejson ];
pythonImportsCheck = [ "nmap3" ];
# Module has no tests
doCheck = false;
meta = {
description = "Library which helps in using nmap port scanner";
homepage = "https://github.com/nmmapper/python3-nmap";
changelog = "https://github.com/nmmapper/python3-nmap/releases/tag/${src.tag}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ fab ];
};
}
+2
View File
@@ -15593,6 +15593,8 @@ self: super: with self; {
python3-gnutls = callPackage ../development/python-modules/python3-gnutls { };
python3-nmap = callPackage ../development/python-modules/python3-nmap { };
python3-openid = callPackage ../development/python-modules/python3-openid { };
python3-saml = callPackage ../development/python-modules/python3-saml { };