blob: 355f596084d0a43b528add830c2f3019d752ec96 (
about) (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "rplcd";
version = "1.4.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-Jl1qVOTtixYV29azPG8g/2ccZWFIyrMRrhtvo3CACVo=";
};
# Disable check because it depends on a GPIO library
doCheck = false;
meta = with lib; {
homepage = "https://github.com/dbrgn/RPLCD";
description = ''
Raspberry Pi LCD library for the widely used Hitachi HD44780 controller
'';
mainProgram = "rplcd-tests";
license = licenses.mit;
maintainers = with maintainers; [ onny ];
};
}
|