linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / libusb1 / default.nix
blobcc0ba39e64efb969bedeb7e342180768c68ee8d0
1 { lib, stdenv, buildPythonPackage, fetchPypi, libusb1, pytest }:
3 buildPythonPackage rec {
4   pname = "libusb1";
5   version = "1.9.2";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "17hqck808m59jv6m2g4hasnay44pycy3y0im01fq9jpr3ymcdbi7";
10   };
12   postPatch = ''
13     substituteInPlace usb1/libusb1.py --replace \
14       "ctypes.util.find_library(base_name)" \
15       "'${libusb1}/lib/libusb-1.0${stdenv.hostPlatform.extensions.sharedLibrary}'"
16   '';
18   buildInputs = [ libusb1 ];
20   checkInputs = [ pytest ];
22   checkPhase = ''
23     # USBPollerThread is unreliable. Let's not test it.
24     # See: https://github.com/vpelletier/python-libusb1/issues/16
25     py.test -k 'not testUSBPollerThreadExit' usb1/testUSB1.py
26   '';
28   meta = with lib; {
29     homepage    = "https://github.com/vpelletier/python-libusb1";
30     description = "Python ctype-based wrapper around libusb1";
31     license     = licenses.lgpl2Plus;
32     maintainers = with maintainers; [ prusnak rnhmjoj ];
33   };