nixpkgs-suyu/pkgs/development/python-modules/trezor/default.nix

48 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, isPy3k, python, pytest
, 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
buildPythonPackage rec {
pname = "trezor";
2019-09-26 17:48:42 +02:00
version = "0.11.5";
2017-03-11 13:49:23 +01:00
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
2019-09-26 17:48:42 +02:00
sha256 = "cd8aafd70a281daa644c4a3fb021ffac20b7a88e86226ecc8bb3e78e1734a184";
2017-03-11 13:49:23 +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
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
runHook postCheck
'';
2017-03-11 13:49:23 +01:00
meta = with lib; {
2017-03-11 13:49:23 +01:00
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" ];
2017-03-11 13:49:23 +01:00
};
}