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