depot/third_party/nixpkgs/pkgs/development/python-modules/libagent/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

79 lines
1.5 KiB
Nix

{
lib,
fetchFromGitHub,
bech32,
buildPythonPackage,
setuptools,
cryptography,
ed25519,
ecdsa,
gnupg,
semver,
mnemonic,
unidecode,
mock,
pytestCheckHook,
backports-shutil-which,
configargparse,
python-daemon,
pymsgbox,
pynacl,
}:
# When changing this package, please test packages {keepkey,ledger,onlykey,trezor}-agent
buildPythonPackage rec {
pname = "libagent";
version = "0.15.0";
pyproject = true;
src = fetchFromGitHub {
owner = "romanz";
repo = "trezor-agent";
rev = "refs/tags/v${version}";
hash = "sha256-NmpFyLjLdR9r1tc06iDNH8Tc7isUelTg13mWPrQvxSc=";
};
# hardcode the path to gpgconf in the libagent library
postPatch = ''
substituteInPlace libagent/gpg/keyring.py \
--replace "util.which('gpgconf')" "'${gnupg}/bin/gpgconf'" \
--replace "'gpg-connect-agent'" "'${gnupg}/bin/gpg-connect-agent'"
'';
build-system = [ setuptools ];
dependencies = [
unidecode
backports-shutil-which
configargparse
python-daemon
pymsgbox
ecdsa
ed25519
mnemonic
semver
pynacl
bech32
cryptography
];
pythonImportsCheck = [ "libagent" ];
nativeCheckInputs = [
mock
pytestCheckHook
];
disabledTests = [
# test fails in sandbox
"test_get_agent_sock_path"
];
meta = with lib; {
description = "Using hardware wallets as SSH/GPG agent";
homepage = "https://github.com/romanz/trezor-agent";
license = licenses.lgpl3Only;
maintainers = with maintainers; [ np ];
};
}