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