about summary refs log tree commit diff
path: root/pkgs/tools/security/trufflehog
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-12-05 20:13:49 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-12-05 20:13:49 +0100
commitfdbefaab1d0890c5f2448c9df65dc9e3a5754a06 (patch)
tree850917972421b866a6a95baf5c22dba8344490f0 /pkgs/tools/security/trufflehog
parentb8ee16d6c7b2ed407f0cbb15fadb9c5cd90b91b1 (diff)
truffleHog: rename GitPython
Diffstat (limited to 'pkgs/tools/security/trufflehog')
-rw-r--r--pkgs/tools/security/trufflehog/default.nix17
1 files changed, 11 insertions, 6 deletions
diff --git a/pkgs/tools/security/trufflehog/default.nix b/pkgs/tools/security/trufflehog/default.nix
index 57f49988e75b0..27574241576ad 100644
--- a/pkgs/tools/security/trufflehog/default.nix
+++ b/pkgs/tools/security/trufflehog/default.nix
@@ -1,4 +1,6 @@
-{ lib, python3Packages }:
+{ lib
+, python3Packages
+}:
 
 let
   truffleHogRegexes = python3Packages.buildPythonPackage rec {
@@ -16,7 +18,7 @@ in
 
     src = python3Packages.fetchPypi {
       inherit pname version;
-      sha256 = "sha256-fw0JyM2iqQrkL4FAXllEozJdkKWELS3eAURx5NZcceQ=";
+      hash = "sha256-fw0JyM2iqQrkL4FAXllEozJdkKWELS3eAURx5NZcceQ=";
     };
 
     # Relax overly restricted version constraint
@@ -24,15 +26,18 @@ in
       substituteInPlace setup.py --replace "GitPython ==" "GitPython >= "
     '';
 
-    propagatedBuildInputs = [ python3Packages.GitPython truffleHogRegexes ];
+    propagatedBuildInputs = [
+      python3Packages.gitpython
+      truffleHogRegexes
+    ];
 
     # Test cases run git clone and require network access
     doCheck = false;
 
-    meta = {
+    meta = with lib; {
       homepage = "https://github.com/dxa4481/truffleHog";
       description = "Searches through git repositories for high entropy strings and secrets, digging deep into commit history";
-      license = with lib.licenses; [ gpl2 ];
-      maintainers = with lib.maintainers; [ bhipple ];
+      license = with licenses; [ gpl2 ];
+      maintainers = with maintainers; [ bhipple ];
     };
   }