at 23.05-pre 576 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "rplcd"; 5 version = "1.3.0"; 6 7 src = fetchPypi { 8 inherit version; 9 pname = "RPLCD"; 10 sha256 = "sha256-AIEiL+IPU76DF+P08c5qokiJcZdNNDJ/Jjng2Z292LY="; 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}