anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / libgpiod / default.nix
blob8ea7089985bd331c9b37a7dd44b6efcce9ed8e98
2   lib,
3   buildPythonPackage,
4   libgpiod,
5 }:
6 buildPythonPackage {
7   inherit (libgpiod) pname version src;
8   format = "setuptools";
10   buildInputs = [ libgpiod ];
12   preConfigure = ''
13     cd bindings/python
14   '';
16   # Requires libgpiod built with --enable-tests
17   doCheck = false;
18   pythonImportsCheck = [ "gpiod" ];
20   meta = with lib; {
21     description = "Python bindings for libgpiod";
22     homepage = "https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/about/";
23     license = licenses.lgpl21Plus;
24     maintainers = with maintainers; [ lopsided98 ];
25   };