From 858a310831a4fc26f83ef0d3a13d3ebfa2372af0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 1 Feb 2025 17:12:31 +0100 Subject: [PATCH] python313Packages.jsonargparse: 4.35.0 -> 4.36.0 Diff: omni-us/jsonargparse@refs/tags/v4.35.0...v4.36.0 Changelog: https://github.com/omni-us/jsonargparse/blob/v4.36.0/CHANGELOG.rst --- .../python-modules/jsonargparse/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/jsonargparse/default.nix b/pkgs/development/python-modules/jsonargparse/default.nix index cfb405845743..b02ad887e890 100644 --- a/pkgs/development/python-modules/jsonargparse/default.nix +++ b/pkgs/development/python-modules/jsonargparse/default.nix @@ -16,6 +16,7 @@ requests, ruyaml, setuptools, + toml, types-pyyaml, types-requests, typeshed-client, @@ -23,7 +24,7 @@ buildPythonPackage rec { pname = "jsonargparse"; - version = "4.35.0"; + version = "4.36.0"; pyproject = true; disabled = pythonOlder "3.11"; @@ -32,7 +33,7 @@ buildPythonPackage rec { owner = "omni-us"; repo = "jsonargparse"; tag = "v${version}"; - hash = "sha256-+gxwajChbdcsIa8Jp0iva3ik5vZeMRa38KuoQwIGNoU="; + hash = "sha256-wtYE6DQ6EgTFJjzx3IdavnV6TUIGmvPM3PR/+9oeJAk="; }; build-system = [ setuptools ]; @@ -65,6 +66,7 @@ buildPythonPackage rec { docstring-parser typeshed-client ]; + toml = [ toml ]; urls = [ requests ]; }; @@ -78,9 +80,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "jsonargparse" ]; meta = with lib; { - description = "Module to mplement minimal boilerplate CLIs derived from various sources"; + description = "Module to implement minimal boilerplate CLIs derived from various sources"; homepage = "https://github.com/omni-us/jsonargparse"; - changelog = "https://github.com/omni-us/jsonargparse/blob/${version}/CHANGELOG.rst"; + changelog = "https://github.com/omni-us/jsonargparse/blob/v${version}/CHANGELOG.rst"; license = licenses.mit; maintainers = with maintainers; [ fab ]; };