about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/adafruit-pureio/default.nix
blob: d3712ba46c245b6d40145c9caab52e81cce5a34c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, buildPythonPackage
, fetchPypi
, setuptools-scm
}:

buildPythonPackage rec {
  pname = "Adafruit-PureIO";
  version = "1.1.9";

  src = fetchPypi {
    pname = "Adafruit_PureIO";
    inherit version;
    sha256 = "0yd8hw676s7plq75gac4z0ilfcfydjkk3wv76bc73xy70zxj5brc";
  };

  nativeBuildInputs = [ setuptools-scm ];

  # Physical SMBus is not present
  doCheck = false;
  pythonImportsCheck = [ "Adafruit_PureIO" ];

  meta = with lib; {
    description = "Python interface to Linux IO including I2C and SPI";
    homepage = "https://github.com/adafruit/Adafruit_Python_PureIO";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}