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
This commit is contained in:
Fabian Affolter
2025-02-01 17:12:31 +01:00
parent a9a193d69b
commit 858a310831
@@ -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 ];
};