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

python313Packages.pyatmo: 9.0.0 -> 9.2.1 (#408883)

* python313Packages.pyatmo: 9.0.0 -> 9.2.1

Diff: https://github.com/jabesq/pyatmo/compare/refs/tags/v9.0.0...refs/tags/v9.2.1

Changelog: https://github.com/jabesq/pyatmo/blob/v9.2.1/CHANGELOG.md

authored by

Fabian Affolter and committed by
Martin Weinelt
38c6500e 5eed43d9

+4 -2
+4 -2
pkgs/development/python-modules/pyatmo/default.nix
··· 1 1 { 2 2 lib, 3 3 aiohttp, 4 + anyio, 4 5 buildPythonPackage, 5 6 fetchFromGitHub, 6 7 oauthlib, ··· 18 17 19 18 buildPythonPackage rec { 20 19 pname = "pyatmo"; 21 - version = "9.0.0"; 20 + version = "9.2.1"; 22 21 pyproject = true; 23 22 24 23 disabled = pythonOlder "3.11"; ··· 27 26 owner = "jabesq"; 28 27 repo = "pyatmo"; 29 28 tag = "v${version}"; 30 - hash = "sha256-DGtfXM0Bfo5iyJ66/Bm5rQB2/ZYA+ZhlkUci1viynWY="; 29 + hash = "sha256-vSyZsWhqyQqKFukD6GbtkAJd3QBmRwdmRIYD19DXQW0="; 31 30 }; 32 31 33 32 pythonRelaxDeps = [ ··· 46 45 ]; 47 46 48 47 nativeCheckInputs = [ 48 + anyio 49 49 pytest-asyncio 50 50 pytest-mock 51 51 pytestCheckHook