about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyasn/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyasn/default.nix')
-rw-r--r--pkgs/development/python-modules/pyasn/default.nix13
1 files changed, 11 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pyasn/default.nix b/pkgs/development/python-modules/pyasn/default.nix
index 6da1ae55f599..7e684c27ae1e 100644
--- a/pkgs/development/python-modules/pyasn/default.nix
+++ b/pkgs/development/python-modules/pyasn/default.nix
@@ -1,4 +1,10 @@
-{ lib, buildPythonPackage, fetchPypi, fetchFromGitHub, python, }:
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  fetchFromGitHub,
+  python,
+}:
 
 buildPythonPackage rec {
   pname = "pyasn";
@@ -29,7 +35,10 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Offline IP address to Autonomous System Number lookup module";
     homepage = "https://github.com/hadiasghari/pyasn";
-    license = with licenses; [ bsdOriginal mit ];
+    license = with licenses; [
+      bsdOriginal
+      mit
+    ];
     maintainers = with maintainers; [ onny ];
   };
 }