ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / libusb1 / default.nix
blobda84d890ecedfe116e387bfba3c1639eaf2a385d
1 { lib, stdenv, buildPythonPackage, fetchPypi, libusb1, pytestCheckHook }:
3 buildPythonPackage rec {
4   pname = "libusb1";
5   version = "3.0.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "5792a9defee40f15d330a40d9b1800545c32e47ba7fc66b6f28f133c9fcc8538";
10   };
12   postPatch = ''
13     substituteInPlace usb1/_libusb1.py --replace \
14       "ctypes.util.find_library(base_name)" \
15       "'${libusb1}/lib/libusb-1.0${stdenv.hostPlatform.extensions.sharedLibrary}'"
16   '';
18   buildInputs = [ libusb1 ];
20   checkInputs = [ pytestCheckHook ];
22   pytestFlagsArray = [
23     "usb1/testUSB1.py"
24   ];
26   meta = with lib; {
27     homepage    = "https://github.com/vpelletier/python-libusb1";
28     description = "Python ctype-based wrapper around libusb1";
29     license     = licenses.lgpl2Plus;
30     maintainers = with maintainers; [ prusnak rnhmjoj ];
31   };