depot/third_party/nixpkgs/pkgs/development/python-modules/rpi-gpio2/default.nix
Default email 3a4df29a92 Project import generated by Copybara.
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
2022-06-16 19:23:12 +02:00

28 lines
774 B
Nix

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