mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
python311Packages.jsonargparse: init at 4.27.2
Module to mplement minimal boilerplate CLIs derived from various sources https://github.com/omni-us/jsonargparse
This commit is contained in:
parent
3835e47059
commit
aa724f8116
109
pkgs/development/python-modules/jsonargparse/default.nix
Normal file
109
pkgs/development/python-modules/jsonargparse/default.nix
Normal file
@ -0,0 +1,109 @@
|
||||
{ lib
|
||||
, argcomplete
|
||||
, attrs
|
||||
, buildPythonPackage
|
||||
, docstring-parser
|
||||
, fetchFromGitHub
|
||||
, fsspec
|
||||
, jsonnet
|
||||
, jsonschema
|
||||
, omegaconf
|
||||
, pydantic
|
||||
, pytest-subtests
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, pyyaml
|
||||
, reconplogger
|
||||
, requests
|
||||
, responses
|
||||
, ruyaml
|
||||
, setuptools
|
||||
, types-pyyaml
|
||||
, types-requests
|
||||
, typeshed-client
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jsonargparse";
|
||||
version = "4.27.2";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "omni-us";
|
||||
repo = "jsonargparse";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-qvc0HpwgYXDayA0q0D598rCb+I3LuaPm2tmmd0E3rrk=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pyyaml
|
||||
];
|
||||
|
||||
passthru.optional-dependencies = {
|
||||
all = [
|
||||
argcomplete
|
||||
fsspec
|
||||
jsonnet
|
||||
jsonschema
|
||||
omegaconf
|
||||
ruyaml
|
||||
docstring-parser
|
||||
typeshed-client
|
||||
requests
|
||||
];
|
||||
argcomplete = [
|
||||
argcomplete
|
||||
];
|
||||
fsspec = [
|
||||
fsspec
|
||||
];
|
||||
jsonnet = [
|
||||
jsonnet
|
||||
# jsonnet-binary
|
||||
];
|
||||
jsonschema = [
|
||||
jsonschema
|
||||
];
|
||||
omegaconf = [
|
||||
omegaconf
|
||||
];
|
||||
reconplogger = [
|
||||
reconplogger
|
||||
];
|
||||
ruyaml = [
|
||||
ruyaml
|
||||
];
|
||||
signatures = [
|
||||
docstring-parser
|
||||
typeshed-client
|
||||
];
|
||||
urls = [
|
||||
requests
|
||||
];
|
||||
};
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytest-subtests
|
||||
pytestCheckHook
|
||||
types-pyyaml
|
||||
types-requests
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"jsonargparse"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Module to mplement 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";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -5875,6 +5875,8 @@ self: super: with self; {
|
||||
|
||||
json5 = callPackage ../development/python-modules/json5 { };
|
||||
|
||||
jsonargparse = callPackage ../development/python-modules/jsonargparse { };
|
||||
|
||||
jsonconversion = callPackage ../development/python-modules/jsonconversion { };
|
||||
|
||||
jsondate = callPackage ../development/python-modules/jsondate { };
|
||||
|
Loading…
Reference in New Issue
Block a user