nixpkgs/pkgs/development/python-modules/hwi/default.nix

53 lines
1 KiB
Nix
Raw Normal View History

2020-07-15 14:37:51 +00:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, bitbox02
2020-07-15 14:37:51 +00:00
, ecdsa
, hidapi
, libusb1
, mnemonic
2020-07-15 14:37:51 +00:00
, pyaes
, pythonAtLeast
2020-07-15 14:37:51 +00:00
}:
buildPythonPackage rec {
pname = "hwi";
2020-11-29 14:04:31 +00:00
version = "1.2.1";
disabled = pythonAtLeast "3.9";
2020-07-15 14:37:51 +00:00
src = fetchFromGitHub {
owner = "bitcoin-core";
repo = "HWI";
rev = version;
sha256 = "0fs3152lw7y5l9ssr5as8gd739m9lb7wxpv1vc5m77k5nw7l8ax5";
2020-07-15 14:37:51 +00:00
};
postPatch = ''
substituteInPlace setup.py \
--replace "'ecdsa>=0.13.0,<0.14.0'" "'ecdsa'" \
--replace "'hidapi>=0.7.99,<0.8.0'" "'hidapi'" \
--replace "'mnemonic>=0.18.0,<0.19.0'" "'mnemonic'"
'';
2020-07-15 14:37:51 +00:00
propagatedBuildInputs = [
bitbox02
2020-07-15 14:37:51 +00:00
ecdsa
hidapi
libusb1
mnemonic
2020-07-15 14:37:51 +00:00
pyaes
];
# tests require to clone quite a few firmwares
2020-07-15 14:37:51 +00:00
doCheck = false;
pythonImportsCheck = [ "hwilib" ];
2020-07-15 14:37:51 +00:00
meta = {
description = "Bitcoin Hardware Wallet Interface";
homepage = "https://github.com/bitcoin-core/hwi";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ prusnak ];
};
}