aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/hidapi/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/python-modules/hidapi/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/python-modules/hidapi/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/python-modules/hidapi/default.nix b/infra/libkookie/nixpkgs/pkgs/development/python-modules/hidapi/default.nix
new file mode 100644
index 000000000000..9e9e965d3368
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/development/python-modules/hidapi/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, libusb1, udev, darwin, fetchPypi, buildPythonPackage, cython }:
+
+buildPythonPackage rec {
+ pname = "hidapi";
+ version = "0.9.0.post3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "5a2442928f17ba742d9c53073f48b152051c5747d758d2fefd937543da5ab2e5";
+ };
+
+ propagatedBuildInputs =
+ stdenv.lib.optionals stdenv.isLinux [ libusb1 udev ] ++
+ stdenv.lib.optionals stdenv.isDarwin [ darwin.IOKit darwin.apple_sdk.frameworks.CoreFoundation ] ++
+ [ cython ];
+
+ # Fix the USB backend library lookup
+ postPatch = stdenv.lib.optionalString stdenv.isLinux ''
+ 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
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
+ substituteInPlace setup.py --replace 'macos_sdk_path =' 'macos_sdk_path = "" #'
+ '';
+
+ pythonImportsCheck = [ "hid" ];
+
+ meta = with stdenv.lib; {
+ description = "A Cython interface to the hidapi from https://github.com/signal11/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 = licenses.bsd3;
+ maintainers = with maintainers; [ np ];
+ };
+}