1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "rplcd";
5 version = "1.3.1";
6
7 src = fetchPypi {
8 inherit version;
9 pname = "RPLCD";
10 hash = "sha256-uZ0pPzWK8cBSX8/qvcZGYEnlVdtWn/vKPyF1kfwU5Pk=";
11 };
12
13 # Disable check because it depends on a GPIO library
14 doCheck = false;
15
16 meta = with lib; {
17 homepage = "https://github.com/dbrgn/RPLCD";
18 description = ''
19 Raspberry Pi LCD library for the widely used Hitachi HD44780 controller
20 '';
21 license = licenses.mit;
22 maintainers = with maintainers; [ onny ];
23 };
24}