about summary refs log tree commit diff
path: root/pkgs/development/python-modules/bme680/default.nix
blob: 3d1a3c0cd233974cf368be71ac4f6a485650e7e3 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,

  # build-system
  hatchling,
  hatch-fancy-pypi-readme,

  # dependencies
  smbus2,

  # checks
  mock,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "bme680";
  version = "2.0.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pimoroni";
    repo = "bme680-python";
    rev = "refs/tags/v${version}";
    hash = "sha256-ep0dnok/ycEoUAnOK4QmdqdO0r4ttzSoqHDl7aPengE=";
  };

  build-system = [
    hatchling
    hatch-fancy-pypi-readme
  ];

  dependencies = [ smbus2 ];

  nativeCheckInputs = [
    mock
    pytestCheckHook
  ];

  pythonImportsCheck = [ "bme680" ];

  meta = with lib; {
    description = "Python library for driving the Pimoroni BME680 Breakout";
    homepage = "https://github.com/pimoroni/bme680-python";
    license = licenses.mit;
    platforms = platforms.linux;
    maintainers = with maintainers; [ mic92 ];
  };
}