Merge pull request #108513 from languitar/patch-1

pass-git-helper: 1.1.0 -> 1.1.1

authored by

Anderson Torres and committed by
GitHub
f0e757d9 c5323df4

+4 -4
+4 -4
pkgs/applications/version-management/git-and-tools/pass-git-helper/default.nix
··· 1 - { lib, stdenv, buildPythonApplication, fetchFromGitHub, pyxdg, pytest }: 1 + { lib, stdenv, buildPythonApplication, fetchFromGitHub, pyxdg, pytest, pytest-mock }: 2 2 3 3 buildPythonApplication rec { 4 4 pname = "pass-git-helper"; 5 - version = "1.1.0"; 5 + version = "1.1.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "languitar"; 9 9 repo = "pass-git-helper"; 10 10 rev = "v${version}"; 11 - sha256 = "18nvwlp0w4aqj268wly60rnjzqw2d8jl0hbs6bkwp3hpzzz5g6yd"; 11 + sha256 = "sha256-GdsFPpBdoEaOCmdKxw5xTuFOcGFH94w5q/lV891lCUs="; 12 12 }; 13 13 14 14 propagatedBuildInputs = [ pyxdg ]; 15 - checkInputs = [ pytest ]; 15 + checkInputs = [ pytest pytest-mock ]; 16 16 preCheck = '' 17 17 export HOME=$(mktemp -d) 18 18 '';