blob: 955eee09cdeff9a597b33a0c28b62e7068d5781e (
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
|
{ lib
, buildPythonPackage
, fetchFromGitHub
, mock
, smbus-cffi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "bme680";
version = "1.1.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "pimoroni";
repo = "bme680-python";
rev = "v${version}";
hash = "sha256-gmdRxMJ0DoCyNcb/bYp746PBi4HktHAAYOcSQJ0Uheg=";
};
propagatedBuildInputs = [
smbus-cffi
];
preBuild = ''
cd library
'';
nativeCheckInputs = [
mock
pytestCheckHook
];
postPatch = ''
substituteInPlace library/setup.cfg \
--replace "smbus" "smbus-cffi"
'';
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 ];
};
}
|