Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / rpi-gpio / default.nix
bloba045744d122ed3e24d6e0235d118b76c1edc0394
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "rpi-gpio";
5   version = "0.7.1";
6   format = "setuptools";
8   src = fetchPypi {
9     pname = "RPi.GPIO";
10     inherit version;
11     hash = "sha256-zWHEsDw3tiu6SlrP6phidJwzxhjgKV5+kKpHE/s3O3A=";
12   };
14   # Tests disable because they do a platform check which requires running on a
15   # Raspberry Pi
16   doCheck = false;
18   meta = with lib; {
19     homepage = "https://sourceforge.net/p/raspberry-gpio-python";
20     description = "Python module to control the GPIO on a Raspberry Pi";
21     license = licenses.mit;
22     platforms = platforms.linux;
23     maintainers = with maintainers; [ onny ];
24   };