python3Packages.keyring-pass: init at 0.9.2

closes #241660
This commit is contained in:
Krzysztof Nazarewski 2023-11-23 10:46:42 +01:00
parent ae5c332cbb
commit 6734bc99f7
No known key found for this signature in database
GPG key ID: 985C1ACE088CC9F4
2 changed files with 80 additions and 0 deletions

View file

@ -0,0 +1,78 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, gnupg
, keyring
, pass
, poetry-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "keyring-pass";
version = "0.9.2";
disabled = pythonOlder "3.6";
pyproject = true;
src = fetchFromGitHub {
owner = "nazarewk";
repo = "keyring_pass";
rev = "refs/tags/v${version}";
hash = "sha256-Sf7eDOB3prH2s6BzdBtxewSweC0ibLXVxNHBJRRaJe4=";
};
postPatch = ''
substituteInPlace keyring_pass/__init__.py \
--replace 'pass_binary = "pass"' 'pass_binary = "${lib.getExe pass}"'
'';
nativeBuildInputs = [
poetry-core
];
nativeCheckInputs = [
keyring
gnupg
];
checkPhase = ''
export HOME="$TMPDIR"
# generate temporary GPG identity
cat <<EOF | gpg --gen-key --batch /dev/stdin
%no-protection
%transient-key
Key-Type: 1
Key-Length: 1024
Subkey-Type: 1
Subkey-Length: 1024
Name-Real: test
Name-Email: test@example.com
Expire-Date: 1
EOF
# configure password store
${lib.getExe pass} init test@example.com
# Configure `keyring` CLI
# first make sure `keyring-pass` is in "$PYTHONPATH"
[[ "$PYTHONPATH" == *"$out"/lib/python*/site-packages* ]]
export PYTHON_KEYRING_BACKEND="keyring_pass.PasswordStoreBackend"
# confirm set/get/del works
keyring set test-service test-username <<<"test-password"
test "$(keyring get test-service test-username)" == "test-password"
keyring del test-service test-username
'';
pythonImportsCheck = [
"keyring_pass"
];
meta = {
description = "Password Store (pass) backend for python's keyring";
homepage = "https://github.com/nazarewk/keyring_pass";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.nazarewk ];
};
}

View file

@ -6113,6 +6113,8 @@ self: super: with self; {
keyring = callPackage ../development/python-modules/keyring { };
keyring-pass = callPackage ../development/python-modules/keyring-pass { };
keyrings-cryptfile = callPackage ../development/python-modules/keyrings-cryptfile { };
keyrings-google-artifactregistry-auth = callPackage ../development/python-modules/keyrings-google-artifactregistry-auth { };