blob: 6c01bacba19bf2b31833f2b7717602a253e9e504 (
plain)
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";
tag = "v${version}";
hash = "sha256-ep0dnok/ycEoUAnOK4QmdqdO0r4ttzSoqHDl7aPengE=";
};
build-system = [
hatchling
hatch-fancy-pypi-readme
];
dependencies = [ smbus2 ];
nativeCheckInputs = [
mock
pytestCheckHook
];
pythonImportsCheck = [ "bme680" ];
meta = {
description = "Python library for driving the Pimoroni BME680 Breakout";
homepage = "https://github.com/pimoroni/bme680-python";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ mic92 ];
};
}
|