Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / rplcd / default.nix
blobe521523ba697bd884d6c6d2ed7088e8c849b7958
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "rplcd";
5   version = "1.3.1";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit version;
10     pname = "RPLCD";
11     hash = "sha256-uZ0pPzWK8cBSX8/qvcZGYEnlVdtWn/vKPyF1kfwU5Pk=";
12   };
14   # Disable check because it depends on a GPIO library
15   doCheck = false;
17   meta = with lib; {
18     homepage = "https://github.com/dbrgn/RPLCD";
19     description = ''
20       Raspberry Pi LCD library for the widely used Hitachi HD44780 controller
21     '';
22     mainProgram = "rplcd-tests";
23     license = licenses.mit;
24     maintainers = with maintainers; [ onny ];
25   };