about summary refs log tree commit diff
path: root/pkgs/development/python-modules/rpi-gpio2/default.nix
blob: f24f6a5f6fe99d6a5da5a81b41325186ba75989e (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
29
30
31
32
33
34
{
  lib,
  libgpiod,
  buildPythonPackage,
  fetchFromGitHub,
}:

buildPythonPackage rec {
  pname = "rpi-gpio2";
  version = "0.4.0";
  format = "setuptools";

  # PyPi source does not work for some reason
  src = fetchFromGitHub {
    owner = "underground-software";
    repo = "RPi.GPIO2";
    rev = "refs/tags/v${version}";
    hash = "sha256-CNnej67yTh3C8n4cCA7NW97rlfIDrrlepRNDkv+BUeY=";
  };

  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 ];
  };
}