summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/nmapthon2/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/nmapthon2/default.nix')
-rw-r--r--pkgs/development/python-modules/nmapthon2/default.nix25
1 files changed, 10 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/nmapthon2/default.nix b/pkgs/development/python-modules/nmapthon2/default.nix
index 4c8a66c91a55..8f2ade7951a5 100644
--- a/pkgs/development/python-modules/nmapthon2/default.nix
+++ b/pkgs/development/python-modules/nmapthon2/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, appdirs
-, buildPythonPackage
-, fetchFromGitHub
-, pytestCheckHook
-, pythonOlder
+{
+ lib,
+ appdirs,
+ buildPythonPackage,
+ fetchFromGitHub,
+ pytestCheckHook,
+ pythonOlder,
}:
buildPythonPackage rec {
@@ -20,17 +21,11 @@ buildPythonPackage rec {
hash = "sha256-4Na75TdKDywUomJF4tDWUWwCCtcOSxBUMOF7+FDhbpY=";
};
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pytestFlagsArray = [
- "tests/scanner_tests.py"
- ];
+ pytestFlagsArray = [ "tests/scanner_tests.py" ];
- pythonImportsCheck = [
- "nmapthon2"
- ];
+ pythonImportsCheck = [ "nmapthon2" ];
meta = with lib; {
description = "Python library to automate nmap";