Unverified Commit 2d58f0fe authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #236921 from fabaff/sensirion-ble

python311Packages.sensirion-ble: init at 0.1.0
parents f1a56550 3095e153
Loading
Loading
Loading
Loading
+52 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, hatchling
, bluetooth-data-tools
, bluetooth-sensor-state-data
, home-assistant-bluetooth
, sensor-state-data
, pythonOlder
}:

buildPythonPackage rec {
  pname = "sensirion-ble";
  version = "0.1.0";
  format = "pyproject";

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "akx";
    repo = "sensirion-ble";
    rev = "refs/tags/v${version}";
    hash = "sha256-7l76/Bci1ztt2CfwytLOySK6IL8IDijpB0AYhksRP7o=";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace " --cov=sensirion_ble --cov-report=term-missing:skip-covered" ""
  '';

  nativeBuildInputs = [
    hatchling
  ];

  propagatedBuildInputs = [
    bluetooth-data-tools
    bluetooth-sensor-state-data
    home-assistant-bluetooth
    sensor-state-data
  ];

  pythonImportsCheck = [
    "sensirion_ble"
  ];

  meta = with lib; {
    description = "Parser for Sensirion BLE devices";
    homepage = "https://github.com/akx/sensirion-ble";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}
+3 −1
Original line number Diff line number Diff line
@@ -3500,10 +3500,11 @@
      psutil-home-assistant
      pyserial
      pyudev
      sensirion-ble
      sqlalchemy
      webrtcvad
      zeroconf
    ]; # missing inputs: sensirion-ble
    ];
    "sensor" = ps: with ps; [
      fnv-hash-fast
      psutil-home-assistant
@@ -5280,6 +5281,7 @@
    "sense"
    "senseme"
    "sensibo"
    "sensirion_ble"
    "sensor"
    "sensorpro"
    "sensorpush"
+2 −0
Original line number Diff line number Diff line
@@ -11040,6 +11040,8 @@ self: super: with self; {

  sense-energy = callPackage ../development/python-modules/sense-energy { };

  sensirion-ble = callPackage ../development/python-modules/sensirion-ble { };

  sensor-state-data = callPackage ../development/python-modules/sensor-state-data { };

  sensorpro-ble = callPackage ../development/python-modules/sensorpro-ble { };