blob: d57c747bafe4f0593d0b9e5b74bc92bce1a4fac6 (
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
49
50
51
52
53
54
55
56
57
58
59
|
{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
pkg-config,
xcbuild,
cython,
setuptools,
hidapi,
libusb1,
udev,
}:
buildPythonPackage rec {
pname = "hidapi";
version = "0.15.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-7LwmXL6Le4h1X0IeC6JfCECR7FUMK5D/no3dT81UAxE=";
};
build-system = [
cython
setuptools
];
nativeBuildInputs = [ pkg-config ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ xcbuild ];
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
hidapi
libusb1
];
env = lib.optionalAttrs stdenv.hostPlatform.isLinux {
HIDAPI_SYSTEM_HIDAPI = true;
};
propagatedBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ udev ];
pythonImportsCheck = [ "hid" ];
meta = {
description = "Cython interface to the hidapi from https://github.com/libusb/hidapi";
homepage = "https://github.com/trezor/cython-hidapi";
# license can actually be either bsd3 or gpl3
# see https://github.com/trezor/cython-hidapi/blob/master/LICENSE-orig.txt
license = with lib.licenses; [
bsd3
gpl3Only
];
maintainers = with lib.maintainers; [
np
prusnak
];
};
}
|