gitAndTools.pass-git-helper: init at 0.4 (#47056)

This commit is contained in:
vanzef 2018-09-26 12:46:05 +00:00 committed by Jörg Thalheim
parent 24c31d43bb
commit 82f2ae0260
2 changed files with 24 additions and 0 deletions

View file

@ -115,6 +115,8 @@ let
pre-commit = callPackage ./pre-commit { };
pass-git-helper = python3Packages.callPackage ./pass-git-helper { };
qgit = qt5.callPackage ./qgit { };
stgit = callPackage ./stgit {

View file

@ -0,0 +1,22 @@
{ stdenv, buildPythonApplication, fetchFromGitHub, pyxdg }:
buildPythonApplication rec {
pname = "pass-git-helper";
version = "0.4";
src = fetchFromGitHub {
owner = "languitar";
repo = "pass-git-helper";
rev = "${version}";
sha256 = "1zccbmq5l6asl9qm1f90vg9467y3spmv3ayrw07qizrj43yfd9ap";
};
propagatedBuildInputs = [ pyxdg ];
meta = with stdenv.lib; {
homepage = "https://github.com/languitar/pass-git-helper";
description = "A git credential helper interfacing with pass, the standard unix password manager";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ vanzef ];
};
}