python3.pkgs.pydantic-argparse-extensible: init at 1.3.6

This commit is contained in:
Rebecca Turner 2025-03-21 13:22:17 -07:00
parent 8dbc39f6e0
commit 63e421982c
No known key found for this signature in database
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
pydantic,
nix-update-script,
}:
buildPythonPackage rec {
pname = "pydantic-argparse-extensible";
version = "1.3.6";
pyproject = true;
src = fetchPypi {
pname = "pydantic_argparse_extensible";
inherit version;
hash = "sha256-DLE2eFrofCDcEPrn5g/mZlxNidVXThUumWV+u+yyvOI=";
};
build-system = [
poetry-core
];
dependencies = [
pydantic
];
pythonImportsCheck = [
"pydantic_argparse_extensible"
];
passthru.updateScript = nix-update-script { };
meta = {
description = "A typed wrapper around argparse using pydantic models";
homepage = "https://pypi.org/project/pydantic-argparse-extensible";
license = lib.licenses.mit;
maintainers = [ lib.maintainers._9999years ];
};
}

View file

@ -11906,6 +11906,8 @@ self: super: with self; {
pydantic_1 = callPackage ../development/python-modules/pydantic/1.nix { };
pydantic-argparse-extensible = callPackage ../development/python-modules/pydantic-argparse-extensible { };
pydantic-compat = callPackage ../development/python-modules/pydantic-compat { };
pydantic-core = callPackage ../development/python-modules/pydantic-core { };