8 buildPythonPackage rec {
12 src = fetchFromGitHub {
14 repo = "bme680-python";
16 sha256 = "sha256-oIXh1JnGTI/Cj4MQFpWq+sWR2X+ioCsK0Q+T7wPITCQ=";
19 propagatedBuildInputs = [ smbus-cffi ];
24 checkInputs = [ pytestCheckHook ];
26 # next release will have tests, but not the current one
29 pythonImportsCheck = [ "bme680" ];
32 description = "Python library for driving the Pimoroni BME680 Breakout";
33 homepage = "https://github.com/pimoroni/bme680-python";
34 license = licenses.mit;
35 platforms = platforms.linux;
36 maintainers = with maintainers; [ mic92 ];