2021-05-20 23:08:51 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, xcbuild
|
|
|
|
, cython
|
|
|
|
, libusb1
|
|
|
|
, udev
|
|
|
|
, darwin
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "hidapi";
|
2022-04-27 09:35:20 +00:00
|
|
|
version = "0.11.2";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-04-27 09:35:20 +00:00
|
|
|
sha256 = "sha256-yYS37C/C6ph81EzwaUflVXJJjtLUPGSJC0q1iymvcrw=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
nativeBuildInputs = lib.optionals stdenv.isDarwin [ xcbuild ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ cython ]
|
|
|
|
++ lib.optionals stdenv.isLinux [ libusb1 udev ]
|
|
|
|
++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ AppKit CoreFoundation IOKit ]);
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Fix the USB backend library lookup
|
2021-02-05 17:12:51 +00:00
|
|
|
postPatch = lib.optionalString stdenv.isLinux ''
|
2020-04-24 23:36:52 +00:00
|
|
|
libusb=${libusb1.dev}/include/libusb-1.0
|
|
|
|
test -d $libusb || { echo "ERROR: $libusb doesn't exist, please update/fix this build expression."; exit 1; }
|
|
|
|
sed -i -e "s|/usr/include/libusb-1.0|$libusb|" setup.py
|
|
|
|
'';
|
|
|
|
|
2020-10-07 09:15:18 +00:00
|
|
|
pythonImportsCheck = [ "hid" ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-11-12 09:05:59 +00:00
|
|
|
description = "A Cython interface to the hidapi from https://github.com/libusb/hidapi";
|
2020-04-24 23:36:52 +00:00
|
|
|
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
|
2021-05-20 23:08:51 +00:00
|
|
|
license = with licenses; [ bsd3 gpl3Only ];
|
2020-11-12 09:05:59 +00:00
|
|
|
maintainers = with maintainers; [ np prusnak ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|