python311Packages.pydantic-extra-types: init at 2.1.0

Packaged for fastapi tests.
This commit is contained in:
Martin Weinelt
2023-09-27 15:34:41 +02:00
parent 29d27793fa
commit b473fdf736
2 changed files with 56 additions and 0 deletions
@@ -0,0 +1,54 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, hatchling
, pydantic
, phonenumbers
, pycountry
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pydantic-extra-types";
version = "2.1.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "pydantic";
repo = "pydantic-extra-types";
rev = "v${version}";
hash = "sha256-QPBOHIssTsWQlEg2WRpLRKrB6zmae43EExnPn5P4oAY=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
pydantic
];
passthru.optional-dependencies = {
all = [
phonenumbers
pycountry
];
};
pythonImportsCheck = [ "pydantic_extra_types" ];
nativeCheckInputs = [
pytestCheckHook
] ++ passthru.optional-dependencies.all;
pytestFlagsArray = [
"-W" "ignore::DeprecationWarning"
];
meta = with lib; {
description = "Extra Pydantic types";
homepage = "https://github.com/pydantic/pydantic-extra-types";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}
+2
View File
@@ -9073,6 +9073,8 @@ self: super: with self; {
pydantic-core = callPackage ../development/python-modules/pydantic-core { };
pydantic-extra-types = callPackage ../development/python-modules/pydantic-extra-types { };
pydantic-scim = callPackage ../development/python-modules/pydantic-scim { };
pydantic-settings = callPackage ../development/python-modules/pydantic-settings { };