blob: 9b63a34aa00863460932d472034300c8082da13c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{
lib,
fetchFromGitHub,
buildPythonPackage,
ecdsa,
hidapi,
libusb1,
mnemonic,
protobuf,
pytest,
}:
buildPythonPackage rec {
pname = "keepkey";
version = "7.2.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "keepkey";
repo = "python-keepkey";
rev = "v${version}";
sha256 = "00hqppdj3s9y25x4ad59y8axq94dd4chhw9zixq32sdrd9v8z55a";
};
propagatedBuildInputs = [
ecdsa
hidapi
libusb1
mnemonic
protobuf
];
nativeCheckInputs = [ pytest ];
# tests requires hardware
doCheck = false;
# Remove impossible dependency constraint
postPatch = "sed -i -e 's|hidapi==|hidapi>=|' setup.py";
meta = {
description = "KeepKey Python client";
mainProgram = "keepkeyctl";
homepage = "https://github.com/keepkey/python-keepkey";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ np ];
};
}
|