summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-periphery/default.nix
blob: 4d10c985092b82863c1ec7bb1bc2bc88c91b82ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "python-periphery";
  version = "2.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1arsibmc19iyzr70lqfrkq0fk6gd6imm3zxa7zxv93b6lwl5bw1d";
  };

  # Some tests require physical probing and additional physical setup
  doCheck = false;

  meta = {
    homepage = https://github.com/vsergeev/python-periphery;
    description = "Linux Peripheral I/O (GPIO, LED, PWM, SPI, I2C, MMIO, Serial) with Python 2 & 3";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ bandresen ];
  };
}