nixpkgs/pkgs/development/python-modules/libusb1/default.nix

35 lines
981 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, libusb1, pytest }:
2017-12-30 02:47:57 -08:00
buildPythonPackage rec {
pname = "libusb1";
2021-01-03 00:54:02 -08:00
version = "1.9.1";
2017-12-30 02:47:57 -08:00
src = fetchPypi {
inherit pname version;
2021-01-03 00:54:02 -08:00
sha256 = "14ljk7rywy3fiv23dpayvk14y1ywma729r3b1x2cxf68919g2gnh";
2017-12-30 02:47:57 -08:00
};
postPatch = ''
2017-12-30 02:47:57 -08:00
substituteInPlace usb1/libusb1.py --replace \
"ctypes.util.find_library(base_name)" \
2017-12-31 02:17:34 -08:00
"'${libusb1}/lib/libusb-1.0${stdenv.hostPlatform.extensions.sharedLibrary}'"
2017-12-30 02:47:57 -08:00
'';
buildInputs = [ libusb1 ];
checkInputs = [ pytest ];
2018-07-30 09:28:58 -07:00
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
2018-07-30 09:28:58 -07:00
'';
2017-12-30 02:47:57 -08:00
meta = with stdenv.lib; {
homepage = "https://github.com/vpelletier/python-libusb1";
2017-12-30 02:47:57 -08:00
description = "Python ctype-based wrapper around libusb1";
license = licenses.lgpl2Plus;
2020-12-14 04:03:36 -08:00
maintainers = with maintainers; [ prusnak rnhmjoj ];
2017-12-30 02:47:57 -08:00
};
}