Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyusb / default.nix
blob091ee1b5f4f48c3b3fb92bef142206bb2c6682bf
1 { lib, stdenv, fetchPypi, buildPythonPackage, libusb1, setuptools-scm }:
3 buildPythonPackage rec {
4   pname = "pyusb";
5   version = "1.2.1";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "a4cc7404a203144754164b8b40994e2849fde1cfff06b08492f12fff9d9de7b9";
11   };
13   nativeBuildInputs = [
14     setuptools-scm
15   ];
17   # Fix the USB backend library lookup
18   postPatch =
19     ''
20       libusb=${libusb1.out}/lib/libusb-1.0${stdenv.hostPlatform.extensions.sharedLibrary}
21       test -f $libusb || { echo "ERROR: $libusb doesn't exist, please update/fix this build expression."; exit 1; }
22       sed -i -e "s|find_library=None|find_library=lambda _:\"$libusb\"|" usb/backend/libusb1.py
23     '';
25   # No tests included
26   doCheck = false;
28   pythonImportsCheck = [ "usb" ];
30   meta = with lib; {
31     description = "Python USB access module (wraps libusb 1.0)";  # can use other backends
32     homepage = "https://pyusb.github.io/pyusb/";
33     license = licenses.bsd3;
34     maintainers = with maintainers; [ bjornfor ];
35   };