2017-11-07 17:59:24 +00:00
|
|
|
{ stdenv, fetchFromGitHub, buildPythonPackage, pytest
|
|
|
|
, ecdsa , mnemonic, protobuf, hidapi, trezor }:
|
2017-05-31 21:35:41 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "keepkey";
|
2018-10-24 12:16:31 +01:00
|
|
|
version = "4.0.2";
|
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}";
|
2018-10-24 12:16:31 +01:00
|
|
|
sha256 = "0aa7j9b4f9gz198j8svxdrffwva1ai8vc55v6xbb2a3lfzmpsf9n";
|
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";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "KeepKey Python client";
|
|
|
|
homepage = https://github.com/keepkey/python-keepkey;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ np ];
|
|
|
|
};
|
|
|
|
}
|