lol
0
fork

Configure Feed

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

python313Packages.pytibber: 0.31.1 -> 0.31.2

Diff: https://github.com/Danielhiversen/pyTibber/compare/refs/tags/0.31.1...refs/tags/0.31.2

Changelog: https://github.com/Danielhiversen/pyTibber/releases/tag/0.31.2

+5 -3
+5 -3
pkgs/development/python-modules/pytibber/default.nix
··· 8 8 pytestCheckHook, 9 9 pythonOlder, 10 10 setuptools, 11 + websockets, 11 12 }: 12 13 13 14 buildPythonPackage rec { 14 15 pname = "pytibber"; 15 - version = "0.31.1"; 16 + version = "0.31.2"; 16 17 pyproject = true; 17 18 18 19 disabled = pythonOlder "3.11"; ··· 21 22 owner = "Danielhiversen"; 22 23 repo = "pyTibber"; 23 24 tag = version; 24 - hash = "sha256-qQ/F7SF91wiWelV6kFBDjv5UmrrcD5TmwCsNuG5c25s="; 25 + hash = "sha256-/k9XnRgfaE59+Fi/5AhCJt4/jFLdYeDCNaoGCDYGWso="; 25 26 }; 26 27 27 28 build-system = [ setuptools ]; ··· 29 30 dependencies = [ 30 31 aiohttp 31 32 gql 32 - ] ++ gql.optional-dependencies.websockets; 33 + websockets 34 + ]; 33 35 34 36 nativeCheckInputs = [ 35 37 pytest-asyncio