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

33 lines
836 B
Nix
Raw Normal View History

{ lib, stdenv, buildPythonPackage, fetchPypi, libusb1, pytest }:
2017-12-30 10:47:57 +00:00
buildPythonPackage rec {
pname = "libusb1";
version = "1.9.3";
2017-12-30 10:47:57 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "60e6ce37be064f6e51d02b25da44230ecc9c0b1fdb6f14568c71457d963c1749";
2017-12-30 10:47:57 +00: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 ];
checkInputs = [ pytest ];
2018-07-30 16:28:58 +00:00
checkPhase = ''
py.test usb1/testUSB1.py
2018-07-30 16:28:58 +00:00
'';
meta = with lib; {
homepage = "https://github.com/vpelletier/python-libusb1";
2017-12-30 10:47:57 +00:00
description = "Python ctype-based wrapper around libusb1";
license = licenses.lgpl2Plus;
2020-12-14 12:03:36 +00:00
maintainers = with maintainers; [ prusnak rnhmjoj ];
2017-12-30 10:47:57 +00:00
};
}