Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / lcd-i2c / default.nix
blob7ba9be221dde1886f061f91088ade44e81f9f83a
1 { lib
2 , python3
3 , fetchPypi
4 , buildPythonPackage
5 , smbus2
6 , poetry-core
7 }:
9 buildPythonPackage rec {
10   pname = "lcd-i2c";
11   version = "0.2.3";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-NYBaCXBmuTziT0WYEqrW10HRmRy3jpjH3YWQh5Y/TdQ=";
17   };
19   nativeBuildInputs = [
20     poetry-core
21   ];
23   propagatedBuildInputs = [
24     smbus2
25   ];
27   meta = with lib; {
28     description = "Library for interacting with an I2C LCD screen through Python";
29     homepage = "https://pypi.org/project/lcd-i2c/";
30     license = licenses.mit;
31     maintainers = with maintainers; [ oliver-koss ];
32     mainProgram = "lcd-i2c";
33   };