ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / rpi-gpio / default.nix
blob56384a12e4aac4b69c96bad9c786884877f8fb3d
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "rpi-gpio";
5   version = "0.7.1";
7   src = fetchPypi {
8     pname = "RPi.GPIO";
9     inherit version;
10     sha256 = "sha256-zWHEsDw3tiu6SlrP6phidJwzxhjgKV5+kKpHE/s3O3A=";
11   };
13   # Tests disable because they do a platform check which requires running on a
14   # Raspberry Pi
15   doCheck = false;
17   meta = with lib; {
18     homepage = "https://sourceforge.net/p/raspberry-gpio-python";
19     description = "Python module to control the GPIO on a Raspberry Pi";
20     license = licenses.mit;
21     platforms = platforms.linux;
22     maintainers = with maintainers; [ onny ];
23   };