python3.pkgs.pydantic-argparse-extensible: init at 1.3.6 (#391938)
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -11912,6 +11912,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 { };
|
||||
|
||||
Reference in New Issue
Block a user