diff --git a/pkgs/development/python-modules/python-nmap/default.nix b/pkgs/development/python-modules/python-nmap/default.nix new file mode 100644 index 00000000000..745d6c67eac --- /dev/null +++ b/pkgs/development/python-modules/python-nmap/default.nix @@ -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 ]; + }; +} diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix index df0164f2dd9..899a0731c6d 100644 --- a/pkgs/servers/home-assistant/component-packages.nix +++ b/pkgs/servers/home-assistant/component-packages.nix @@ -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 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a3e3c839cd5..cf34e762cc8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -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 { };