1 { lib, buildPythonApplication, fetchFromGitHub, pyxdg, pytestCheckHook, pytest-cov-stub, pytest-mock, setuptools }:
3 buildPythonApplication rec {
4 pname = "pass-git-helper";
8 src = fetchFromGitHub {
10 repo = "pass-git-helper";
11 rev = "refs/tags/v${version}";
12 sha256 = "sha256-DLH3l4wYfBlrc49swLgyHeZXebJ5JSzU7cHjD7Hmw0g=";
15 build-system = [ setuptools ];
17 dependencies = [ pyxdg ];
21 pythonImportsCheck = [ "passgithelper" ];
30 homepage = "https://github.com/languitar/pass-git-helper";
31 description = "Git credential helper interfacing with pass, the standard unix password manager";
32 license = licenses.gpl3Plus;
33 maintainers = with maintainers; [ hmenke vanzef ];
34 mainProgram = "pass-git-helper";