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

31 lines
852 B
Nix
Raw Normal View History

2018-07-30 18:28:58 +02:00
{ stdenv, lib, buildPythonPackage, fetchPypi, python, libusb1 }:
2017-12-30 11:47:57 +01:00
buildPythonPackage rec {
pname = "libusb1";
2018-07-26 13:09:30 +02:00
version = "1.6.5";
2017-12-30 11:47:57 +01:00
src = fetchPypi {
inherit pname version;
2018-07-26 13:09:30 +02:00
sha256 = "4707f81e933a97fed1c5bf7d4957f07bae1139cb8084bdee1f50201a40e3fd7c";
2017-12-30 11:47:57 +01:00
};
postPatch = lib.optionalString stdenv.isLinux ''
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 ];
2018-07-30 18:28:58 +02:00
checkPhase = ''
${python.interpreter} -m usb1.testUSB1
'';
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 ];
};
}