35 lines
979 B
Nix
35 lines
979 B
Nix
{ lib, stdenv, buildPythonPackage, fetchPypi, libusb1, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "libusb1";
|
|
version = "1.9.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "17hqck808m59jv6m2g4hasnay44pycy3y0im01fq9jpr3ymcdbi7";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace usb1/libusb1.py --replace \
|
|
"ctypes.util.find_library(base_name)" \
|
|
"'${libusb1}/lib/libusb-1.0${stdenv.hostPlatform.extensions.sharedLibrary}'"
|
|
'';
|
|
|
|
buildInputs = [ libusb1 ];
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
checkPhase = ''
|
|
# USBPollerThread is unreliable. Let's not test it.
|
|
# See: https://github.com/vpelletier/python-libusb1/issues/16
|
|
py.test -k 'not testUSBPollerThreadExit' usb1/testUSB1.py
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/vpelletier/python-libusb1";
|
|
description = "Python ctype-based wrapper around libusb1";
|
|
license = licenses.lgpl2Plus;
|
|
maintainers = with maintainers; [ prusnak rnhmjoj ];
|
|
};
|
|
}
|