Files
nixpkgs/pkgs/development/python-modules/rplcd/default.nix
Martin Weinelt 7874dd2a70 python3Packages.rplcd: 1.3.1 -> 1.4.0
This commit was automatically generated using update-python-libraries.
2025-04-03 23:13:04 +02:00

30 lines
624 B
Nix

{
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 ];
};
}