99e6d1bfbb
Signed-off-by: Marcin Serwin <marcin@serwin.dev>
89 lines
1.9 KiB
Nix
89 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
installShellFiles,
|
|
setuptools-scm,
|
|
shtab,
|
|
importlib-metadata,
|
|
jaraco-classes,
|
|
jaraco-context,
|
|
jaraco-functools,
|
|
jeepney,
|
|
secretstorage,
|
|
pyfakefs,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "keyring";
|
|
version = "25.7.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jaraco";
|
|
repo = "keyring";
|
|
tag = "v${version}";
|
|
hash = "sha256-v9s28vwx/5DJRa3dQyS/mdZppfvFcfBtafjBRi2c1oQ=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail '"coherent.licensed",' ""
|
|
'';
|
|
|
|
build-system = [ setuptools-scm ];
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
shtab
|
|
];
|
|
|
|
dependencies = [
|
|
jaraco-classes
|
|
jaraco-context
|
|
jaraco-functools
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
jeepney
|
|
secretstorage
|
|
]
|
|
++ lib.optionals (pythonOlder "3.12") [ importlib-metadata ];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd keyring \
|
|
--bash <($out/bin/keyring --print-completion bash) \
|
|
--zsh <($out/bin/keyring --print-completion zsh)
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"keyring"
|
|
"keyring.backend"
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pyfakefs
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
"tests/backends/test_macOS.py"
|
|
]
|
|
# These tests fail when sandboxing is enabled because they are unable to get a password from keychain.
|
|
++ lib.optional stdenv.hostPlatform.isDarwin "tests/test_multiprocess.py";
|
|
|
|
meta = {
|
|
description = "Store and access your passwords safely";
|
|
homepage = "https://github.com/jaraco/keyring";
|
|
changelog = "https://github.com/jaraco/keyring/blob/${src.tag}/NEWS.rst";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "keyring";
|
|
maintainers = with lib.maintainers; [
|
|
dotlambda
|
|
];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|