python310Packages.rplcd: init at 1.3.0
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
{ lib, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "rplcd";
|
||||
version = "1.3.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "RPLCD";
|
||||
sha256 = "sha256-AIEiL+IPU76DF+P08c5qokiJcZdNNDJ/Jjng2Z292LY=";
|
||||
};
|
||||
|
||||
# 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
|
||||
'';
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ onny ];
|
||||
};
|
||||
}
|
||||
@@ -9346,6 +9346,8 @@ in {
|
||||
|
||||
rpi-gpio2 = callPackage ../development/python-modules/rpi-gpio2 { };
|
||||
|
||||
rplcd = callPackage ../development/python-modules/rplcd { };
|
||||
|
||||
rply = callPackage ../development/python-modules/rply { };
|
||||
|
||||
rpm = toPythonModule (pkgs.rpm.override {
|
||||
|
||||
Reference in New Issue
Block a user