2023-02-02 18:25:31 +00:00
|
|
|
{ lib, libgpiod, buildPythonPackage, fetchFromGitHub }:
|
2022-06-16 17:23:12 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "rpi-gpio2";
|
|
|
|
version = "0.3.0a3";
|
|
|
|
|
|
|
|
# PyPi source does not work for some reason
|
2023-02-02 18:25:31 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "underground-software";
|
|
|
|
repo = "RPi.GPIO2";
|
|
|
|
rev = "v${version}";
|
|
|
|
hash = "sha256-8HQbEnO+4Ppo2Z3HBulbBcSKJF1bNNQYz8k6aUt65oc=";
|
2022-06-16 17:23:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|