biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / rplcd / default.nix
blob899dc8c5c31eea93cc4c121b1144960708d3703f
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "rplcd";
9   version = "1.3.1";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit version;
14     pname = "RPLCD";
15     hash = "sha256-uZ0pPzWK8cBSX8/qvcZGYEnlVdtWn/vKPyF1kfwU5Pk=";
16   };
18   # Disable check because it depends on a GPIO library
19   doCheck = false;
21   meta = with lib; {
22     homepage = "https://github.com/dbrgn/RPLCD";
23     description = ''
24       Raspberry Pi LCD library for the widely used Hitachi HD44780 controller
25     '';
26     mainProgram = "rplcd-tests";
27     license = licenses.mit;
28     maintainers = with maintainers; [ onny ];
29   };