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

35 lines
983 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, libusb1, pytest }:
2017-12-30 11:47:57 +01:00
buildPythonPackage rec {
pname = "libusb1";
2019-05-30 08:49:51 +02:00
version = "1.7.1";
2017-12-30 11:47:57 +01:00
src = fetchPypi {
inherit pname version;
2019-05-30 08:49:51 +02:00
sha256 = "adf64a4f3f5c94643a1286f8153bcf4bc787c348b38934aacd7fe17fbeebc571";
2017-12-30 11:47:57 +01:00
};
postPatch = ''
2017-12-30 11:47:57 +01:00
substituteInPlace usb1/libusb1.py --replace \
"ctypes.util.find_library(base_name)" \
2017-12-31 11:17:34 +01:00
"'${libusb1}/lib/libusb-1.0${stdenv.hostPlatform.extensions.sharedLibrary}'"
2017-12-30 11:47:57 +01:00
'';
buildInputs = [ libusb1 ];
checkInputs = [ pytest ];
2018-07-30 18:28:58 +02: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 18:28:58 +02:00
'';
2017-12-30 11:47:57 +01: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 ];
};
}