Merge pull request #142750 from prusnak/hwi

python3Packages.hwi: make compatible with libusb1 2.x

authored by

Pavol Rusnak and committed by
GitHub
f9340818 20447813

+6
+6
pkgs/development/python-modules/hwi/default.nix
··· 31 31 typing-extensions 32 32 ]; 33 33 34 + # make compatible with libusb1 2.x 35 + postPatch = '' 36 + substituteInPlace setup.py \ 37 + --replace 'libusb1>=1.7,<2.0' 'libusb1>=1.7' 38 + ''; 39 + 34 40 # tests require to clone quite a few firmwares 35 41 doCheck = false; 36 42