48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{ lib, fetchPypi, buildPythonPackage, isPy3k, python, pytest
|
|
, typing-extensions
|
|
, protobuf
|
|
, hidapi
|
|
, ecdsa
|
|
, mnemonic
|
|
, requests
|
|
, pyblake2
|
|
, click
|
|
, construct
|
|
, libusb1
|
|
, rlp
|
|
, shamir-mnemonic
|
|
, trezor-udev-rules
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "trezor";
|
|
version = "0.11.6";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1i73j812i0dgjw9n106pipc6qksd9cgs59d0as0b4j5iyl0087hh";
|
|
};
|
|
|
|
propagatedBuildInputs = [ typing-extensions protobuf hidapi ecdsa mnemonic requests pyblake2 click construct libusb1 rlp shamir-mnemonic trezor-udev-rules ];
|
|
|
|
checkInputs = [
|
|
pytest
|
|
];
|
|
|
|
# disable test_tx_api.py as it requires being online
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
pytest --pyargs tests --ignore tests/test_tx_api.py
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Python library for communicating with TREZOR Bitcoin Hardware Wallet";
|
|
homepage = "https://github.com/trezor/trezor-firmware/tree/master/python";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ np prusnak mmahut maintainers."1000101" ];
|
|
};
|
|
}
|