pass-git-helper: 4.1.0 -> 4.3.0 (#521275)

This commit is contained in:
Sandro
2026-05-17 19:49:02 +00:00
committed by GitHub
4 changed files with 15 additions and 6 deletions
+6
View File
@@ -11276,6 +11276,12 @@
githubId = 1031119;
name = "Ian-Woo Kim";
};
ibbem = {
name = "ibbem";
github = "ibbem";
githubId = 61984399;
email = "ibbem@ibbem.net";
};
ibizaman = {
email = "ibizapeanut@gmail.com";
github = "ibizaman";
+5 -3
View File
@@ -2,25 +2,26 @@
lib,
python3Packages,
fetchFromGitHub,
writableTmpDirAsHomeHook,
}:
python3Packages.buildPythonApplication (finalAttrs: {
pname = "pass-git-helper";
version = "4.1.0";
version = "4.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "languitar";
repo = "pass-git-helper";
tag = "v${finalAttrs.version}";
sha256 = "sha256-gMhTYIFNCrUm6YoOOesJcQScugQ/SawiyeXjRG3cpQY=";
sha256 = "sha256-/Brx86YRmSkSr00xj5B5J/bNBqknoXRwX9B6595dEwU=";
};
build-system = with python3Packages; [ setuptools ];
dependencies = with python3Packages; [ pyxdg ];
env.HOME = "$TMPDIR";
nativeBuildInputs = [ writableTmpDirAsHomeHook ];
pythonImportsCheck = [ "passgithelper" ];
@@ -36,6 +37,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [
hmenke
ibbem
];
mainProgram = "pass-git-helper";
};
@@ -3,6 +3,7 @@
buildPythonPackage,
fetchFromGitHub,
hatchling,
writableTmpDirAsHomeHook,
boilerpy3,
events,
httpx,
@@ -103,6 +104,7 @@ buildPythonPackage rec {
nativeBuildInputs = [
hatchling
writableTmpDirAsHomeHook
];
propagatedBuildInputs = [
@@ -131,8 +133,6 @@ buildPythonPackage rec {
transformers
];
env.HOME = "$(mktemp -d)";
optional-dependencies = {
# all = [
# farm-haystack
@@ -16,6 +16,7 @@
testers,
wcmatch,
withPlugins ? true,
writableTmpDirAsHomeHook,
molecule-plugins,
yamllint,
}:
@@ -61,7 +62,7 @@ buildPythonPackage rec {
}).overrideAttrs
(old: {
# workaround the error: Permission denied: '/homeless-shelter'
HOME = "$(mktemp -d)";
nativeBuildInputs = old.nativeBuildInputs ++ [ writableTmpDirAsHomeHook ];
});
meta = {