lol

python311Packages.pylibftdi: 0.20.0 -> 0.21.0

Changelog: https://github.com/codedstructure/pylibftdi/blob/0.21.00/CHANGES.txt

+5 -4
+5 -4
pkgs/development/python-modules/pylibftdi/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pylibftdi"; 11 - version = "0.20.0"; 11 + version = "0.21.0"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "f4a87fc4af2c9c7d42badd4192ca9b529f32c9d96fdc8daea7e29c509226df5f"; 18 + hash = "sha256-634vUFKFJUf0xsRgIqFmX510U0OWORcereVv3ICliDI="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ ··· 24 24 ]; 25 25 26 26 postPatch = '' 27 - substituteInPlace pylibftdi/driver.py \ 27 + substituteInPlace src/pylibftdi/driver.py \ 28 28 --replace "self._load_library('libusb')" "cdll.LoadLibrary('${libusb1.out}/lib/libusb-1.0.so')" \ 29 29 --replace "self._load_library('libftdi')" "cdll.LoadLibrary('${libftdi1.out}/lib/libftdi1.so')" 30 30 ''; ··· 34 34 ]; 35 35 36 36 meta = with lib; { 37 + description = "Wrapper to Intra2net's libftdi driver for FTDI's USB devices"; 37 38 homepage = "https://pylibftdi.readthedocs.io/"; 38 - description = "Wrapper to Intra2net's libftdi driver for FTDI's USB devices"; 39 + changelog = "https://github.com/codedstructure/pylibftdi/blob/${version}0/CHANGES.txt"; 39 40 license = licenses.mit; 40 41 maintainers = with maintainers; [ matthuszagh ]; 41 42 };