33 lines
853 B
Nix
33 lines
853 B
Nix
{ lib, stdenv, buildPythonPackage, fetchPypi, libusb1, pytestCheckHook }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "libusb1";
|
|
version = "3.0.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "5792a9defee40f15d330a40d9b1800545c32e47ba7fc66b6f28f133c9fcc8538";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace usb1/_libusb1.py --replace \
|
|
"ctypes.util.find_library(base_name)" \
|
|
"'${libusb1}/lib/libusb-1.0${stdenv.hostPlatform.extensions.sharedLibrary}'"
|
|
'';
|
|
|
|
buildInputs = [ libusb1 ];
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
pytestFlagsArray = [
|
|
"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 ];
|
|
};
|
|
}
|