2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchFromGitHub,
|
|
|
|
buildPythonPackage,
|
|
|
|
ecdsa,
|
|
|
|
hidapi,
|
|
|
|
libusb1,
|
|
|
|
mnemonic,
|
|
|
|
protobuf,
|
|
|
|
pytest,
|
2021-12-26 17:43:05 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "keepkey";
|
2021-10-17 02:12:59 +00:00
|
|
|
version = "7.2.1";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "keepkey";
|
|
|
|
repo = "python-keepkey";
|
|
|
|
rev = "v${version}";
|
2021-10-17 02:12:59 +00:00
|
|
|
sha256 = "00hqppdj3s9y25x4ad59y8axq94dd4chhw9zixq32sdrd9v8z55a";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
ecdsa
|
|
|
|
hidapi
|
|
|
|
libusb1
|
|
|
|
mnemonic
|
|
|
|
protobuf
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [ pytest ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# tests requires hardware
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
# Remove impossible dependency constraint
|
|
|
|
postPatch = "sed -i -e 's|hidapi==|hidapi>=|' setup.py";
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "KeepKey Python client";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "keepkeyctl";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/keepkey/python-keepkey";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ np ];
|
|
|
|
};
|
|
|
|
}
|