about summary refs log tree commit diff
path: root/pkgs/development/python-modules/shodan/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/shodan/default.nix')
-rw-r--r--pkgs/development/python-modules/shodan/default.nix30
1 files changed, 16 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/shodan/default.nix b/pkgs/development/python-modules/shodan/default.nix
index 43ea7bdba8a7..e83336b07b91 100644
--- a/pkgs/development/python-modules/shodan/default.nix
+++ b/pkgs/development/python-modules/shodan/default.nix
@@ -1,13 +1,14 @@
-{ lib
-, buildPythonPackage
-, click-plugins
-, colorama
-, fetchPypi
-, pythonOlder
-, requests
-, setuptools
-, tldextract
-, xlsxwriter
+{
+  lib,
+  buildPythonPackage,
+  click-plugins,
+  colorama,
+  fetchPypi,
+  pythonOlder,
+  requests,
+  setuptools,
+  tldextract,
+  xlsxwriter,
 }:
 
 buildPythonPackage rec {
@@ -34,9 +35,7 @@ buildPythonPackage rec {
   # The tests require a shodan api key, so skip them.
   doCheck = false;
 
-  pythonImportsCheck = [
-    "shodan"
-  ];
+  pythonImportsCheck = [ "shodan" ];
 
   meta = with lib; {
     description = "Python library and command-line utility for Shodan";
@@ -44,6 +43,9 @@ buildPythonPackage rec {
     homepage = "https://github.com/achillean/shodan-python";
     changelog = "https://github.com/achillean/shodan-python/blob/${version}/CHANGELOG.md";
     license = licenses.mit;
-    maintainers = with maintainers; [ fab lihop ];
+    maintainers = with maintainers; [
+      fab
+      lihop
+    ];
   };
 }