summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-01-13 16:31:10 -0500
committerxeji <36407913+xeji@users.noreply.github.com>2019-01-13 22:31:10 +0100
commitb1957d6428eac4d0a469ab4d161659954f29f68f (patch)
tree178f022fd861635613c59dc640148c8fec71a935
parent036ee02fa38ee4100019e574986bc0704afc5312 (diff)
downloadnixpkgs-b1957d6428eac4d0a469ab4d161659954f29f68f.tar
nixpkgs-b1957d6428eac4d0a469ab4d161659954f29f68f.tar.gz
nixpkgs-b1957d6428eac4d0a469ab4d161659954f29f68f.tar.bz2
nixpkgs-b1957d6428eac4d0a469ab4d161659954f29f68f.tar.lz
nixpkgs-b1957d6428eac4d0a469ab4d161659954f29f68f.tar.xz
nixpkgs-b1957d6428eac4d0a469ab4d161659954f29f68f.tar.zst
nixpkgs-b1957d6428eac4d0a469ab4d161659954f29f68f.zip
detect-secrets: 0.11.0 -> 0.11.4 (#53893)
-rw-r--r--pkgs/development/tools/detect-secrets/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/detect-secrets/default.nix b/pkgs/development/tools/detect-secrets/default.nix
index c341e2eb710..76bdb6bb6ba 100644
--- a/pkgs/development/tools/detect-secrets/default.nix
+++ b/pkgs/development/tools/detect-secrets/default.nix
@@ -2,20 +2,20 @@
 
 buildPythonApplication rec {
   pname = "detect-secrets";
-  version = "0.11.0";
+  version = "0.11.4";
 
   # PyPI tarball doesn't ship tests
   src = fetchFromGitHub {
     owner = "Yelp";
     repo = "detect-secrets";
     rev = "v${version}";
-    sha256 = "11r11q6d8aajqqnhhz4lsa93qf1x745331kl9jd3z4y4w91l4gdz";
+    sha256 = "1ydigridkjirrfhyfr8barw0yrd4hw6w0k9g7mbd0gdqng6gpmgc";
   };
 
-  propagatedBuildInputs = [ pyyaml unidiff ]
+  propagatedBuildInputs = [ pyyaml ]
     ++ lib.optionals isPy27 [ configparser enum34 future functools32 ];
 
-  checkInputs = [ mock pytest ];
+  checkInputs = [ mock pytest unidiff ];
 
   # deselect tests which require git setup
   checkPhase = ''