about summary refs log tree commit diff
path: root/pkgs/development/python-modules/extractcode/7z.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/extractcode/7z.nix')
-rw-r--r--pkgs/development/python-modules/extractcode/7z.nix26
1 files changed, 13 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/extractcode/7z.nix b/pkgs/development/python-modules/extractcode/7z.nix
index 89a0bd110d4b..bc1ae9e07ab9 100644
--- a/pkgs/development/python-modules/extractcode/7z.nix
+++ b/pkgs/development/python-modules/extractcode/7z.nix
@@ -1,8 +1,9 @@
-{ lib
-, fetchFromGitHub
-, buildPythonPackage
-, plugincode
-, p7zip
+{
+  lib,
+  fetchFromGitHub,
+  buildPythonPackage,
+  plugincode,
+  p7zip,
 }:
 
 buildPythonPackage rec {
@@ -18,9 +19,7 @@ buildPythonPackage rec {
 
   sourceRoot = "${src.name}/builtins/extractcode_7z-linux";
 
-  propagatedBuildInputs = [
-    plugincode
-  ];
+  propagatedBuildInputs = [ plugincode ];
 
   preBuild = ''
     pushd src/extractcode_7z/bin
@@ -35,14 +34,15 @@ buildPythonPackage rec {
   # no tests
   doCheck = false;
 
-  pythonImportsCheck = [
-    "extractcode_7z"
-  ];
+  pythonImportsCheck = [ "extractcode_7z" ];
 
   meta = with lib; {
-    description = "A ScanCode Toolkit plugin to provide pre-built binary libraries and utilities and their locations";
+    description = "ScanCode Toolkit plugin to provide pre-built binary libraries and utilities and their locations";
     homepage = "https://github.com/nexB/scancode-plugins/tree/main/builtins/extractcode_7z-linux";
-    license = with licenses; [ asl20 lgpl21 ];
+    license = with licenses; [
+      asl20
+      lgpl21
+    ];
     maintainers = [ ];
     platforms = platforms.linux;
   };