mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 13:39:15 +03:00
python3.pkgs.pydantic-argparse-extensible: init at 1.3.6
This commit is contained in:
parent
8dbc39f6e0
commit
63e421982c
2 changed files with 43 additions and 0 deletions
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -11906,6 +11906,8 @@ self: super: with self; {
|
||||||
|
|
||||||
pydantic_1 = callPackage ../development/python-modules/pydantic/1.nix { };
|
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-compat = callPackage ../development/python-modules/pydantic-compat { };
|
||||||
|
|
||||||
pydantic-core = callPackage ../development/python-modules/pydantic-core { };
|
pydantic-core = callPackage ../development/python-modules/pydantic-core { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue