nixpkgs/pkgs/development/python-modules/trezor/default.nix
2023-06-18 17:52:53 +00:00

87 lines
1.8 KiB
Nix

{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, isPy3k
, installShellFiles
, attrs
, click
, construct
, construct-classes
, ecdsa
, hidapi
, libusb1
, mnemonic
, pillow
, protobuf
, requests
, shamir-mnemonic
, simple-rlp
, typing-extensions
, trezor-udev-rules
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "trezor";
version = "0.13.7";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
hash = "sha256-dodeWIYBfclPUbu0Efkn8QO9nj7L8HVNXkSjU4mBSeA=";
};
nativeBuildInputs = [ installShellFiles ];
propagatedBuildInputs = [
attrs
click
construct
construct-classes
ecdsa
hidapi
libusb1
mnemonic
pillow
protobuf
requests
shamir-mnemonic
simple-rlp
typing-extensions
] ++ lib.optionals stdenv.isLinux [
trezor-udev-rules
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTestPaths = [
"tests/test_stellar.py" # requires stellar-sdk
"tests/test_firmware.py" # requires network downloads
];
pythonImportsCheck = [ "trezorlib" ];
postCheck = ''
$out/bin/trezorctl --version
'';
postFixup = ''
mkdir completions
_TREZORCTL_COMPLETE=source_bash $out/bin/trezorctl > completions/trezorctl || true
_TREZORCTL_COMPLETE=source_zsh $out/bin/trezorctl > completions/_trezorctl || true
_TREZORCTL_COMPLETE=source_fish $out/bin/trezorctl > completions/trezorctl.fish || true
installShellCompletion --bash completions/trezorctl
installShellCompletion --zsh completions/_trezorctl
installShellCompletion --fish completions/trezorctl.fish
'';
meta = with lib; {
description = "Python library for communicating with Trezor Hardware Wallet";
homepage = "https://github.com/trezor/trezor-firmware/tree/master/python";
license = licenses.gpl3;
maintainers = with maintainers; [ np prusnak mmahut ];
};
}