python313Packages.airthings-ble: 1.1.0 -> 1.1.1

Diff: https://github.com/vincegio/airthings-ble/compare/1.1.0...1.1.1

Changelog: https://github.com/vincegio/airthings-ble/releases/tag/1.1.1

Changed files
+3 -7
pkgs
development
python-modules
airthings-ble
+3 -7
pkgs/development/python-modules/airthings-ble/default.nix
···
{
lib,
async-interrupt,
-
async-timeout,
bleak,
bleak-retry-connector,
buildPythonPackage,
···
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 ];
···
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 ];
};