2019-06-23 06:30:04 +01:00
|
|
|
{ stdenv, libusb1, udev, darwin, fetchPypi, buildPythonPackage, cython }:
|
2017-05-31 21:00:29 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "hidapi";
|
2020-11-04 14:04:22 +00:00
|
|
|
version = "0.10.0.post1";
|
2017-05-31 21:00:29 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-04 14:04:22 +00:00
|
|
|
sha256 = "27c04d42a7187becf7a8309d4846aa4f235ac8b7dafd758335b109f5cbd3b962";
|
2017-05-31 21:00:29 +01:00
|
|
|
};
|
|
|
|
|
2019-06-23 06:30:04 +01:00
|
|
|
propagatedBuildInputs =
|
|
|
|
stdenv.lib.optionals stdenv.isLinux [ libusb1 udev ] ++
|
2020-11-22 06:12:17 +00:00
|
|
|
stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ AppKit CoreFoundation IOKit ]) ++
|
2019-06-23 06:30:04 +01:00
|
|
|
[ cython ];
|
2017-05-31 21:00:29 +01:00
|
|
|
|
|
|
|
# Fix the USB backend library lookup
|
2019-06-23 06:30:04 +01:00
|
|
|
postPatch = stdenv.lib.optionalString stdenv.isLinux ''
|
2017-05-31 21:00:29 +01: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-03 15:03:41 +01:00
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace setup.py --replace 'macos_sdk_path =' 'macos_sdk_path = "" #'
|
2017-05-31 21:00:29 +01:00
|
|
|
'';
|
|
|
|
|
2020-10-03 15:03:41 +01:00
|
|
|
pythonImportsCheck = [ "hid" ];
|
|
|
|
|
2017-05-31 21:00:29 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-10-28 13:53:59 +00:00
|
|
|
description = "A Cython interface to the hidapi from https://github.com/libusb/hidapi";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/trezor/cython-hidapi";
|
2017-05-31 21:00:29 +01:00
|
|
|
# license can actually be either bsd3 or gpl3
|
|
|
|
# see https://github.com/trezor/cython-hidapi/blob/master/LICENSE-orig.txt
|
|
|
|
license = licenses.bsd3;
|
2020-10-28 13:53:59 +00:00
|
|
|
maintainers = with maintainers; [ np prusnak ];
|
2017-05-31 21:00:29 +01:00
|
|
|
};
|
|
|
|
}
|