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

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"; ··· 22 21 owner = "Danielhiversen"; 23 22 repo = "pyTibber"; 24 23 tag = version; 25 - hash = "sha256-qQ/F7SF91wiWelV6kFBDjv5UmrrcD5TmwCsNuG5c25s="; 24 + hash = "sha256-/k9XnRgfaE59+Fi/5AhCJt4/jFLdYeDCNaoGCDYGWso="; 26 25 }; 27 26 28 27 build-system = [ setuptools ]; ··· 30 29 dependencies = [ 31 30 aiohttp 32 31 gql 33 - ] ++ gql.optional-dependencies.websockets; 32 + websockets 33 + ]; 34 34 35 35 nativeCheckInputs = [ 36 36 pytest-asyncio