nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

dotlambda and committed by
GitHub
5e486f5d edf29d70

+3 -7
+3 -7
pkgs/development/python-modules/airthings-ble/default.nix
··· 1 1 { 2 2 lib, 3 3 async-interrupt, 4 - async-timeout, 5 4 bleak, 6 5 bleak-retry-connector, 7 6 buildPythonPackage, ··· 9 10 poetry-core, 10 11 pytest-cov-stub, 11 12 pytestCheckHook, 12 - pythonOlder, 13 13 }: 14 14 15 15 buildPythonPackage rec { 16 16 pname = "airthings-ble"; 17 - version = "1.1.0"; 17 + version = "1.1.1"; 18 18 pyproject = true; 19 - 20 - disabled = pythonOlder "3.12"; 21 19 22 20 src = fetchFromGitHub { 23 21 owner = "vincegio"; 24 22 repo = "airthings-ble"; 25 23 tag = version; 26 - hash = "sha256-eZjMRely3UxcnjPB6DQDBOKdP+2kFCe/5fchiX+rcEM="; 24 + hash = "sha256-fZvmgRQuSrgraj6e3BtsoKyFX38BedqVh6cHsliT9ns="; 27 25 }; 28 26 29 27 build-system = [ poetry-core ]; ··· 42 46 meta = with lib; { 43 47 description = "Library for Airthings BLE devices"; 44 48 homepage = "https://github.com/vincegio/airthings-ble"; 45 - changelog = "https://github.com/vincegio/airthings-ble/releases/tag/${version}"; 49 + changelog = "https://github.com/vincegio/airthings-ble/releases/tag/${src.tag}"; 46 50 license = licenses.mit; 47 51 maintainers = with maintainers; [ fab ]; 48 52 };