depot/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/pass-git-helper/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

22 lines
642 B
Nix

{ 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 ];
};
}