Merge pull request #115202 from fabaff/python-nmap

This commit is contained in:
Sandro 2021-03-07 02:24:40 +01:00 committed by GitHub
commit 1b7722ea23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 41 additions and 1 deletions

View file

@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, fetchPypi
, nmap
}:
buildPythonPackage rec {
pname = "python-nmap";
version = "0.6.4";
src = fetchPypi {
inherit pname version;
sha256 = "013q2797d9sf6mrj7x1hqfcql5gqgg50zgiifp2yypfa4k8cwjsx";
};
propagatedBuildInputs = [ nmap ];
postPatch = ''
substituteInPlace setup.cfg --replace "universal=3" "universal=1"
'';
# Tests requires sudo and performs scans
doCheck = false;
pythonImportsCheck = [ "nmap" ];
meta = with lib; {
description = "Python library which helps in using nmap";
longDescription = ''
python-nmap is a Python library which helps in using nmap port scanner. It
allows to easily manipulate nmap scan results and will be a perfect tool
for systems administrators who want to automatize scanning task and reports.
It also supports nmap script outputs.
'';
homepage = "http://xael.org/pages/python-nmap-en.html";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -556,7 +556,7 @@
"niko_home_control" = ps: with ps; [ ]; # missing inputs: niko-home-control
"nilu" = ps: with ps; [ ]; # missing inputs: niluclient
"nissan_leaf" = ps: with ps; [ ]; # missing inputs: pycarwings2
"nmap_tracker" = ps: with ps; [ getmac ]; # missing inputs: python-nmap
"nmap_tracker" = ps: with ps; [ getmac python-nmap ];
"nmbs" = ps: with ps; [ ]; # missing inputs: pyrail
"no_ip" = ps: with ps; [ ];
"noaa_tides" = ps: with ps; [ ]; # missing inputs: noaa-coops

View file

@ -6499,6 +6499,8 @@ in {
inherit (pkgs) pkg-config;
};
python-nmap = callPackage ../development/python-modules/python-nmap { };
python-nomad = callPackage ../development/python-modules/python-nomad { };
python-oauth2 = callPackage ../development/python-modules/python-oauth2 { };