Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pad4pi / default.nix
blobbc6c0d27aff43e604929704904d24d1949779f2e
1 { lib, buildPythonPackage, fetchPypi, rpi-gpio }:
3 buildPythonPackage rec {
4   pname = "pad4pi";
5   version = "1.1.5";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     hash = "sha256-+oVYlqF5PQAFz4EO1ap6pjmYTLg9xQy6UbQja4utt2Q=";
11   };
13   propagatedBuildInputs = [ rpi-gpio ];
15   # Checks depend on rpi-gpio which requires to be run on a Raspberry Pi,
16   # therefore it fails on other systems
17   doCheck = false;
19   meta = with lib; {
20     homepage = "https://github.com/brettmclean/pad4pi";
21     description = "Interrupt-based matrix keypad library for Raspberry Pi";
22     license = licenses.lgpl3;
23     maintainers = with maintainers; [ onny ];
24   };