2018-12-23 22:50:58 +01:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, isPy3k, python, pytest
|
|
|
|
, typing-extensions
|
|
|
|
, protobuf
|
|
|
|
, hidapi
|
|
|
|
, ecdsa
|
|
|
|
, mnemonic
|
|
|
|
, requests
|
|
|
|
, pyblake2
|
|
|
|
, click
|
|
|
|
, construct
|
|
|
|
, libusb1
|
|
|
|
, rlp
|
2019-07-31 19:52:54 +02:00
|
|
|
, shamir-mnemonic
|
2019-10-27 14:17:02 +01:00
|
|
|
, trezor-udev-rules
|
2017-06-22 14:27:11 +02:00
|
|
|
}:
|
2017-03-11 13:49:23 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "trezor";
|
2019-09-26 17:48:42 +02:00
|
|
|
version = "0.11.5";
|
2017-03-11 13:49:23 +01:00
|
|
|
|
2018-07-17 23:15:57 +02:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2017-05-31 22:40:14 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-09-26 17:48:42 +02:00
|
|
|
sha256 = "cd8aafd70a281daa644c4a3fb021ffac20b7a88e86226ecc8bb3e78e1734a184";
|
2017-03-11 13:49:23 +01:00
|
|
|
};
|
|
|
|
|
2019-10-27 14:17:02 +01:00
|
|
|
propagatedBuildInputs = [ typing-extensions protobuf hidapi ecdsa mnemonic requests pyblake2 click construct libusb1 rlp shamir-mnemonic trezor-udev-rules ];
|
2017-03-11 13:49:23 +01:00
|
|
|
|
2018-12-23 22:50:58 +01:00
|
|
|
checkInputs = [
|
|
|
|
pytest
|
|
|
|
];
|
|
|
|
|
|
|
|
# disable test_tx_api.py as it requires being online
|
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
2019-09-26 17:48:42 +02:00
|
|
|
pytest --pyargs tests --ignore tests/test_tx_api.py
|
2018-12-23 22:50:58 +01:00
|
|
|
runHook postCheck
|
|
|
|
'';
|
2017-03-11 13:49:23 +01:00
|
|
|
|
2019-08-18 21:16:19 +02:00
|
|
|
meta = with lib; {
|
2017-03-11 13:49:23 +01:00
|
|
|
description = "Python library for communicating with TREZOR Bitcoin Hardware Wallet";
|
2019-07-31 19:52:54 +02:00
|
|
|
homepage = "https://github.com/trezor/trezor-firmware/tree/master/python";
|
2019-08-18 21:16:19 +02:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ np prusnak mmahut maintainers."1000101" ];
|
2017-03-11 13:49:23 +01:00
|
|
|
};
|
|
|
|
}
|