1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-22 17:31:04 +03:00
nixpkgs/pkgs/development/python-modules/libusb1/default.nix

33 lines
853 B
Nix
Raw Normal View History

{ lib, stdenv, buildPythonPackage, fetchPypi, libusb1, pytestCheckHook }:
2017-12-30 11:47:57 +01:00
buildPythonPackage rec {
pname = "libusb1";
2022-02-10 14:07:31 +01:00
version = "3.0.0";
2017-12-30 11:47:57 +01:00
src = fetchPypi {
inherit pname version;
2022-02-10 14:07:31 +01:00
sha256 = "5792a9defee40f15d330a40d9b1800545c32e47ba7fc66b6f28f133c9fcc8538";
2017-12-30 11:47:57 +01:00
};
postPatch = ''
substituteInPlace usb1/_libusb1.py --replace \
2017-12-30 11:47:57 +01:00
"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 = [ pytestCheckHook ];
pytestFlagsArray = [
"usb1/testUSB1.py"
];
2018-07-30 18:28:58 +02:00
meta = with lib; {
homepage = "https://github.com/vpelletier/python-libusb1";
2017-12-30 11:47:57 +01:00
description = "Python ctype-based wrapper around libusb1";
license = licenses.lgpl2Plus;
2020-12-14 13:03:36 +01:00
maintainers = with maintainers; [ prusnak rnhmjoj ];
2017-12-30 11:47:57 +01:00
};
}