Skip to content

Commit

Permalink
gitAndTools.pass-git-helper: 0.4 -> 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hmenke authored and teto committed Nov 25, 2020
1 parent e204319 commit 6617122
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
{ stdenv, buildPythonApplication, fetchFromGitHub, pyxdg }:
{ stdenv, buildPythonApplication, fetchFromGitHub, pyxdg, pytest }:

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

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

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

meta = with stdenv.lib; {
homepage = "https://github.com/languitar/pass-git-helper";
Expand Down

0 comments on commit 6617122

Please sign in to comment.