Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 81f94e9cc238
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2c74d5d3c128
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jun 9, 2019

  1. Copy the full SHA
    be8e3cd View commit details
  2. Merge pull request #62893 from marsam/update-detect-secrets

    detect-secrets: 0.11.4 -> 0.12.4
    marsam authored Jun 9, 2019
    Copy the full SHA
    2c74d5d View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/detect-secrets/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/tools/detect-secrets/default.nix
Original file line number Diff line number Diff line change
@@ -2,14 +2,14 @@

buildPythonApplication rec {
pname = "detect-secrets";
version = "0.11.4";
version = "0.12.4";

# PyPI tarball doesn't ship tests
src = fetchFromGitHub {
owner = "Yelp";
repo = "detect-secrets";
rev = "v${version}";
sha256 = "1ydigridkjirrfhyfr8barw0yrd4hw6w0k9g7mbd0gdqng6gpmgc";
sha256 = "01y5xd0irxxib4wnf5834gwa7ibb81h5y4dl8b26gyzgvm5zfpk1";
};

propagatedBuildInputs = [ pyyaml ]