biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pyusb / default.nix
blobc9fdbb623bebe0fd7e52081de70e9bac2a719d72
2   lib,
3   stdenv,
4   fetchPypi,
5   buildPythonPackage,
6   libusb1,
7   setuptools-scm,
8 }:
10 buildPythonPackage rec {
11   pname = "pyusb";
12   version = "1.2.1";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "a4cc7404a203144754164b8b40994e2849fde1cfff06b08492f12fff9d9de7b9";
18   };
20   nativeBuildInputs = [ setuptools-scm ];
22   # Fix the USB backend library lookup
23   postPatch = ''
24     libusb=${libusb1.out}/lib/libusb-1.0${stdenv.hostPlatform.extensions.sharedLibrary}
25     test -f $libusb || { echo "ERROR: $libusb doesn't exist, please update/fix this build expression."; exit 1; }
26     sed -i -e "s|find_library=None|find_library=lambda _:\"$libusb\"|" usb/backend/libusb1.py
27   '';
29   # No tests included
30   doCheck = false;
32   pythonImportsCheck = [ "usb" ];
34   meta = with lib; {
35     description = "Python USB access module (wraps libusb 1.0)"; # can use other backends
36     homepage = "https://pyusb.github.io/pyusb/";
37     license = licenses.bsd3;
38     maintainers = with maintainers; [ bjornfor ];
39   };