python311Packages.pydantic-extra-types: init at 2.1.0
Packaged for fastapi tests.
This commit is contained in:
@@ -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; [ ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user