python3Packages.pyatmo: 9.6.0 -> 9.9.1

Diff: https://github.com/jabesq/pyatmo/compare/v9.6.0...v9.9.1

Changelog: https://github.com/jabesq/pyatmo/blob/v9.9.1/CHANGELOG.md
This commit is contained in:
Robert Schütz
2026-09-02 20:21:33 -07:00
parent c63e36bd02
commit add4c0e766

View File

@@ -4,6 +4,7 @@
anyio,
buildPythonPackage,
fetchFromGitHub,
gitMinimal,
oauthlib,
pytest-asyncio,
pytest-mock,
@@ -18,14 +19,14 @@
buildPythonPackage rec {
pname = "pyatmo";
version = "9.6.0";
version = "9.9.1";
pyproject = true;
src = fetchFromGitHub {
owner = "jabesq";
repo = "pyatmo";
tag = "v${version}";
hash = "sha256-H5lj0IkUMOcAngiPrOxcR58DcSUsyf6Jsxilce7P9nU=";
hash = "sha256-TJHCBGO9Pi3elewj4C9kIf4J9pyhSO5bYGONA3onvRE=";
};
pythonRelaxDeps = [
@@ -53,6 +54,10 @@ buildPythonPackage rec {
time-machine
];
disabledTestPaths = [
"tests/test_release_script.py"
];
pythonImportsCheck = [ "pyatmo" ];
meta = {