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: c5323df4f784
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f0e757d98a32
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 15, 2021

  1. pass-git-helper: 1.1.0 -> 1.1.1

    Bump package and add new test requirements.
    languitar authored and Johannes Wienke committed Jan 15, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    rycee Robert Helgesson
    Copy the full SHA
    15bbb7d View commit details

Commits on Jan 16, 2021

  1. Merge pull request #108513 from languitar/patch-1

    pass-git-helper: 1.1.0 -> 1.1.1
    AndersonTorres authored Jan 16, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    rycee Robert Helgesson
    Copy the full SHA
    f0e757d View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/version-management/git-and-tools/pass-git-helper/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{ lib, stdenv, buildPythonApplication, fetchFromGitHub, pyxdg, pytest }:
{ lib, stdenv, buildPythonApplication, fetchFromGitHub, pyxdg, pytest, pytest-mock }:

buildPythonApplication rec {
pname = "pass-git-helper";
version = "1.1.0";
version = "1.1.1";

src = fetchFromGitHub {
owner = "languitar";
repo = "pass-git-helper";
rev = "v${version}";
sha256 = "18nvwlp0w4aqj268wly60rnjzqw2d8jl0hbs6bkwp3hpzzz5g6yd";
sha256 = "sha256-GdsFPpBdoEaOCmdKxw5xTuFOcGFH94w5q/lV891lCUs=";
};

propagatedBuildInputs = [ pyxdg ];
checkInputs = [ pytest ];
checkInputs = [ pytest pytest-mock ];
preCheck = ''
export HOME=$(mktemp -d)
'';