blob: b7fd3ccd2308c242e6b40da60161114bf6500166 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pyserial,
pyusb,
setuptools,
}:
buildPythonPackage rec {
pname = "pyftdi";
version = "0.57.1";
pyproject = true;
src = fetchFromGitHub {
owner = "eblot";
repo = "pyftdi";
tag = "v${version}";
hash = "sha256-RkZXcGvCZXmFrLvj7YqHc6FeZskEqMSQcYgizBSuwIk=";
};
build-system = [ setuptools ];
dependencies = [
pyserial
pyusb
];
# Tests require access to the serial port
doCheck = false;
pythonImportsCheck = [ "pyftdi" ];
meta = {
description = "User-space driver for modern FTDI devices";
longDescription = ''
PyFtdi aims at providing a user-space driver for popular FTDI devices.
This includes UART, GPIO and multi-serial protocols (SPI, I2C, JTAG)
bridges.
'';
homepage = "https://github.com/eblot/pyftdi";
changelog = "https://github.com/eblot/pyftdi/releases/tag/v${version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fab ];
};
}
|