summary refs log tree commit diff
path: root/pkgs/development/python-modules/libusb1/default.nix
blob: a460fb8a118568948da50dc04bcc54c4d5ac6b38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, lib, buildPythonPackage, fetchPypi, python, libusb1 }:

buildPythonPackage rec {
  pname = "libusb1";
  version = "1.6.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a49917a2262cf7134396f6720c8be011f14aabfc5cdc53f880cc672c0f39d271";
  };

  postPatch = ''
    substituteInPlace usb1/libusb1.py --replace \
      "ctypes.util.find_library(base_name)" \
      "'${libusb1}/lib/libusb-1.0${stdenv.hostPlatform.extensions.sharedLibrary}'"
  '';

  buildInputs = [ libusb1 ];

  checkPhase = ''
    ${python.interpreter} -m usb1.testUSB1
  '';

  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 ];
  };
}