Merge pull request #315371 from raboof/remove-rpi-gpio2

python3Packages/rpi-gpio2: remove package
This commit is contained in:
Arnout Engelen 2024-06-18 14:27:21 +02:00 committed by GitHub
commit 0f1ff77e2c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 36 deletions

View File

@ -1,34 +0,0 @@
{
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 ];
};
}

View File

@ -13517,8 +13517,6 @@ self: super: with self; {
rpi-gpio = callPackage ../development/python-modules/rpi-gpio { };
rpi-gpio2 = callPackage ../development/python-modules/rpi-gpio2 { };
rplcd = callPackage ../development/python-modules/rplcd { };
rply = callPackage ../development/python-modules/rply { };