Files
nixpkgs/pkgs/development/python-modules/python-libnmap/default.nix
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

40 lines
901 B
Nix

{
lib,
buildPythonPackage,
defusedxml,
fetchFromGitHub,
pythonOlder,
}:
buildPythonPackage rec {
pname = "python-libnmap";
version = "0.7.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "savon-noir";
repo = "python-libnmap";
tag = "v${version}";
hash = "sha256-cI8wdOvTmRy2cxLBkJn7vXRBRvewDMNl/tkIiRGhZJ8=";
};
optional-dependencies = {
defusedxml = [ defusedxml ];
};
# We don't want the nmap binary being present
doCheck = false;
pythonImportsCheck = [ "libnmap" ];
meta = {
description = "Library to run nmap scans, parse and diff scan results";
homepage = "https://github.com/savon-noir/python-libnmap";
changelog = "https://github.com/savon-noir/python-libnmap/blob/${version}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}