python310Packages.rplcd: init at 1.3.0

This commit is contained in:
Jonas Heinrich
2022-06-15 19:42:22 -04:00
committed by Yt
parent 2127f29716
commit 69e36019ab
2 changed files with 26 additions and 0 deletions
@@ -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 ];
};
}
+2
View File
@@ -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 {