mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 18:44:07 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
89 lines
1.9 KiB
Nix
89 lines
1.9 KiB
Nix
{ stdenv
|
|
, lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
, installShellFiles
|
|
, attrs
|
|
, click
|
|
, construct
|
|
, construct-classes
|
|
, ecdsa
|
|
, hidapi
|
|
, libusb1
|
|
, mnemonic
|
|
, pillow
|
|
, protobuf
|
|
, pyblake2
|
|
, requests
|
|
, shamir-mnemonic
|
|
, simple-rlp
|
|
, typing-extensions
|
|
, trezor-udev-rules
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "trezor";
|
|
version = "0.13.5";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-jhUBca/+rDge/bFHgpKQhNZBTsd8zNyHHW8NZE/1e9g=";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
propagatedBuildInputs = [
|
|
attrs
|
|
click
|
|
construct
|
|
construct-classes
|
|
ecdsa
|
|
hidapi
|
|
libusb1
|
|
mnemonic
|
|
pillow
|
|
protobuf
|
|
pyblake2
|
|
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 ];
|
|
};
|
|
}
|