Merge pull request #115202 from fabaff/python-nmap
This commit is contained in:
commit
1b7722ea23
38
pkgs/development/python-modules/python-nmap/default.nix
Normal file
38
pkgs/development/python-modules/python-nmap/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user