Unverified Commit 5e486f5d authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python313Packages.airthings-ble: 1.1.0 -> 1.1.1 (#447145)

parents edf29d70 749ef6ff
Loading
Loading
Loading
Loading
+3 −7
Original line number Diff line number Diff line
{
  lib,
  async-interrupt,
  async-timeout,
  bleak,
  bleak-retry-connector,
  buildPythonPackage,
@@ -10,21 +9,18 @@
  poetry-core,
  pytest-cov-stub,
  pytestCheckHook,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "airthings-ble";
  version = "1.1.0";
  version = "1.1.1";
  pyproject = true;

  disabled = pythonOlder "3.12";

  src = fetchFromGitHub {
    owner = "vincegio";
    repo = "airthings-ble";
    tag = version;
    hash = "sha256-eZjMRely3UxcnjPB6DQDBOKdP+2kFCe/5fchiX+rcEM=";
    hash = "sha256-fZvmgRQuSrgraj6e3BtsoKyFX38BedqVh6cHsliT9ns=";
  };

  build-system = [ poetry-core ];
@@ -46,7 +42,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Library for Airthings BLE devices";
    homepage = "https://github.com/vincegio/airthings-ble";
    changelog = "https://github.com/vincegio/airthings-ble/releases/tag/${version}";
    changelog = "https://github.com/vincegio/airthings-ble/releases/tag/${src.tag}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };