Unverified Commit 061ac82f authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python312Packages.py-improv-ble-client: init at 1.0.4 (#352341)

parents 3c280ca8 0af4945f
Loading
Loading
Loading
Loading
+50 −0
Original line number Diff line number Diff line
{
  lib,
  bleak-retry-connector,
  bleak,
  buildPythonPackage,
  fetchFromGitHub,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
  pname = "py-improv-ble-client";
  version = "1.0.4";
  pyproject = true;

  disabled = pythonOlder "3.11";

  src = fetchFromGitHub {
    owner = "home-assistant-libs";
    repo = "py-improv-ble-client";
    rev = "refs/tags/${version}";
    hash = "sha256-leYSDB5/jFqlvX78OYzlFkkVxIkJ7iOUoLHBuVj7tAo=";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail "setuptools~=65.6" "setuptools" \
      --replace-fail "wheel~=0.37.1" "wheel"
  '';

  build-system = [ setuptools ];

  dependencies = [
    bleak
    bleak-retry-connector
  ];

  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [ "improv_ble_client" ];

  meta = {
    description = "Module to provision devices which implement Improv via BLE";
    homepage = "https://github.com/home-assistant-libs/py-improv-ble-client";
    changelog = "https://github.com/home-assistant-libs/py-improv-ble-client/releases/tag/${version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
+3 −1
Original line number Diff line number Diff line
@@ -1941,12 +1941,13 @@
      home-assistant-intents
      ifaddr
      mutagen
      py-improv-ble-client
      pymicro-vad
      pyserial
      pyspeex-noise
      pyudev
      zeroconf
    ]; # missing inputs: py-improv-ble-client
    ];
    "incomfort" = ps: with ps; [
      incomfort-client
    ];
@@ -5345,6 +5346,7 @@
    "image_upload"
    "imap"
    "imgw_pib"
    "improv_ble"
    "incomfort"
    "influxdb"
    "inkbird"
+2 −0
Original line number Diff line number Diff line
@@ -9203,6 +9203,8 @@ self: super: with self; {
  py-expression-eval = callPackage ../development/python-modules/py-expression-eval { };
  py-improv-ble-client = callPackage ../development/python-modules/py-improv-ble-client { };
  py-machineid = callPackage ../development/python-modules/py-machineid { };
  py-ocsf-models = callPackage ../development/python-modules/py-ocsf-models { };