depot/third_party/nixpkgs/pkgs/development/python-modules/bme680/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

47 lines
916 B
Nix

{
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 ];
};
}