nixpkgs/pkgs/development/python-modules/i2csense/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

37 lines
738 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
smbus-cffi,
}:
buildPythonPackage rec {
pname = "i2csense";
version = "0.0.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "6f9c0a37d971e5b8a60c54982bd580cff84bf94fedc08c097e603a8e5609c33f";
};
propagatedBuildInputs = [ smbus-cffi ];
# no tests implemented
doCheck = false;
pythonImportsCheck = [
"i2csense.bme280"
"i2csense.bh1750"
"i2csense.htu21d"
];
meta = with lib; {
description = "Library to handle i2c sensors with the Raspberry Pi";
mainProgram = "i2csense";
homepage = "https://github.com/azogue/i2csense";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}