gitAndTools.pass-git-helper: 0.4 -> 1.1.0

This commit is contained in:
Henri Menke 2020-11-25 14:12:17 +01:00 committed by Matthieu Coudron
parent e204319c74
commit 6617122306

View file

@ -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";