python3Packages.pyftdi: 0.53.3 -> 0.54.0

This commit is contained in:
Fabian Affolter 2022-03-14 14:39:19 +01:00
parent 3cd42bee12
commit 35dc184ac5

View file

@ -8,22 +8,29 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyftdi"; pname = "pyftdi";
version = "0.53.3"; version = "0.54.0";
disabled = pythonOlder "3.5"; format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "eblot"; owner = "eblot";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-t4rFsuhcpYdgmQeog+DRFxHk0wpMc+aukQi981vH/44="; hash = "sha256-vL8jSgTtDvaHuCvaCYmFixILQFasTl82yINL5yRtOwU=";
}; };
propagatedBuildInputs = [ pyusb pyserial ]; propagatedBuildInputs = [
pyserial
pyusb
];
# tests requires access to the serial port # Tests require access to the serial port
doCheck = false; doCheck = false;
pythonImportsCheck = [ "pyftdi" ]; pythonImportsCheck = [
"pyftdi"
];
meta = with lib; { meta = with lib; {
description = "User-space driver for modern FTDI devices"; description = "User-space driver for modern FTDI devices";