summary refs log tree commit diff
path: root/pkgs/development/python-modules/rpi-gpio2/default.nix
blob: 3adf7a35ea74c281bbb1062f91df980662cf3cc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, libgpiod, buildPythonPackage, fetchurl }:

buildPythonPackage rec {
  pname = "rpi-gpio2";
  version = "0.3.0a3";

  # PyPi source does not work for some reason
  src = fetchurl {
    url = "https://github.com/underground-software/RPi.GPIO2/archive/refs/tags/v${version}.tar.gz";
    sha256 = "sha256-AY1AD2Yu66eJUqB4OStZnUeEhmISLVRrTOAcmEHjuOM=";
  };

  propagatedBuildInputs = [
    libgpiod
  ];

  # Disable checks because they need to run on the specific platform
  doCheck = false;

  meta = with lib; {
    homepage = "https://github.com/underground-software/RPi.GPIO2";
    description = ''
      Compatibility layer between RPi.GPIO syntax and libgpiod semantics
    '';
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ onny ];
  };
}