2018-09-09 21:09:34 +01:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchPypi, python, libusb1, pytest }:
|
2017-12-30 10:47:57 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "libusb1";
|
2019-02-09 11:44:18 +00:00
|
|
|
version = "1.7";
|
2017-12-30 10:47:57 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-09 11:44:18 +00:00
|
|
|
sha256 = "03vylg5mdsxp2nyk8sm7yxmb470hcb92q263dfq8d6b9xp96ckwx";
|
2017-12-30 10:47:57 +00:00
|
|
|
};
|
|
|
|
|
2018-09-09 19:56:34 +01:00
|
|
|
postPatch = ''
|
2017-12-30 10:47:57 +00:00
|
|
|
substituteInPlace usb1/libusb1.py --replace \
|
|
|
|
"ctypes.util.find_library(base_name)" \
|
2017-12-31 10:17:34 +00:00
|
|
|
"'${libusb1}/lib/libusb-1.0${stdenv.hostPlatform.extensions.sharedLibrary}'"
|
2017-12-30 10:47:57 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ libusb1 ];
|
|
|
|
|
2018-09-09 21:09:34 +01:00
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
2018-07-30 17:28:58 +01:00
|
|
|
checkPhase = ''
|
2018-09-09 21:09:34 +01:00
|
|
|
# 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
|
2018-07-30 17:28:58 +01:00
|
|
|
'';
|
|
|
|
|
2017-12-30 10:47:57 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/vpelletier/python-libusb1;
|
|
|
|
description = "Python ctype-based wrapper around libusb1";
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
|
|
};
|
|
|
|
}
|