2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchFromGitHub, buildPythonPackage, pytest
|
2017-11-07 17:59:24 +00:00
|
|
|
, ecdsa , mnemonic, protobuf, hidapi, trezor }:
|
2017-05-31 21:35:41 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "keepkey";
|
2020-12-15 02:58:14 +00:00
|
|
|
version = "6.6.0";
|
2017-05-31 21:35:41 +01:00
|
|
|
|
2017-11-07 17:59:24 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "keepkey";
|
|
|
|
repo = "python-keepkey";
|
|
|
|
rev = "v${version}";
|
2020-12-15 02:58:14 +00:00
|
|
|
sha256 = "1v0ns26ykskn0dpbvz9g6lz4q740qmahvddj3pc3rfbjvg43p3vh";
|
2017-05-31 21:35:41 +01:00
|
|
|
};
|
|
|
|
|
2017-11-07 17:59:24 +00:00
|
|
|
propagatedBuildInputs = [ protobuf hidapi trezor ];
|
2017-05-31 21:35:41 +01:00
|
|
|
|
|
|
|
buildInputs = [ ecdsa mnemonic ];
|
|
|
|
|
2017-11-07 17:59:24 +00:00
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
|
|
|
# tests requires hardware
|
2017-05-31 21:35:41 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
# Remove impossible dependency constraint
|
|
|
|
postPatch = "sed -i -e 's|hidapi==|hidapi>=|' setup.py";
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-05-31 21:35:41 +01:00
|
|
|
description = "KeepKey Python client";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/keepkey/python-keepkey";
|
2017-05-31 21:35:41 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ np ];
|
|
|
|
};
|
|
|
|
}
|