From 4c2edb86f2660df582f3f754899cee459152ec88 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 31 Dec 2020 10:16:45 +0100 Subject: [PATCH] python3Packages.pyftdi: add maintainer and long description --- pkgs/development/python-modules/pyftdi/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyftdi/default.nix b/pkgs/development/python-modules/pyftdi/default.nix index f3ebc708cea..71253a894e7 100644 --- a/pkgs/development/python-modules/pyftdi/default.nix +++ b/pkgs/development/python-modules/pyftdi/default.nix @@ -25,9 +25,15 @@ buildPythonPackage rec { pythonImportsCheck = [ "pyftdi" ]; - meta = { + meta = with lib; { 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"; - license = lib.licenses.bsd3; + license = licenses.bsd3; + maintainers = with maintainers; [ fab ]; }; }