Unverified Commit 63e42198 authored by Rebecca Turner's avatar Rebecca Turner
Browse files

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

parent 8dbc39f6
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };