python312Packages.pyftdi: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-11 23:46:13 +02:00
parent 71c63c8ca8
commit d10683ac24

View File

@ -1,10 +1,11 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, pyserial fetchFromGitHub,
, pythonOlder pyserial,
, pyusb pythonOlder,
, setuptools pyusb,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -21,9 +22,7 @@ buildPythonPackage rec {
hash = "sha256-InJJnbAPYlV071EkEWECJC79HLZ6SWo2VP7PqMgOGow="; hash = "sha256-InJJnbAPYlV071EkEWECJC79HLZ6SWo2VP7PqMgOGow=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
pyserial pyserial
@ -33,9 +32,7 @@ buildPythonPackage rec {
# Tests require access to the serial port # Tests require access to the serial port
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "pyftdi" ];
"pyftdi"
];
meta = with lib; { meta = with lib; {
description = "User-space driver for modern FTDI devices"; description = "User-space driver for modern FTDI devices";