Merge pull request #152630 from andreasfelix/python-ormar-init

python3Packages.ormar: init at 0.10.23
This commit is contained in:
Fabian Affolter 2022-01-01 16:42:22 +01:00 committed by GitHub
commit 18b5f23c02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 82 additions and 0 deletions

View File

@ -0,0 +1,80 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, poetry-core
, databases
, pydantic
, sqlalchemy
, asyncpg
, psycopg2
, aiomysql
, aiosqlite
, cryptography
, orjson
, typing-extensions
, importlib-metadata
, aiopg
, mysqlclient
, pymysql
, pytestCheckHook
, pytest-asyncio
, fastapi
}:
buildPythonPackage rec {
pname = "ormar";
version = "0.10.23";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "collerek";
repo = pname;
rev = version;
sha256 = "sha256-ILJvJyd56lqlKq7+mUz26LvusYb5AOOfoA7OgNq2fT0=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
databases
pydantic
sqlalchemy
asyncpg
psycopg2
aiomysql
aiosqlite
cryptography
orjson
] ++ lib.optionals (pythonOlder "3.8") [
typing-extensions
importlib-metadata
];
checkInputs = [
aiomysql
aiosqlite
aiopg
asyncpg
psycopg2
mysqlclient
pymysql
pytestCheckHook
pytest-asyncio
fastapi
];
pythonImportsCheck = [ "ormar" ];
meta = with lib; {
homepage = "https://github.com/collerek/ormar";
description = "A simple async ORM with fastapi in mind and pydantic validation.";
license = licenses.mit;
maintainers = with maintainers; [ andreasfelix ];
};
}

View File

@ -5592,6 +5592,8 @@ in {
orm = callPackage ../development/python-modules/orm { };
ormar = callPackage ../development/python-modules/ormar { };
ortools = (toPythonModule (pkgs.or-tools.override { inherit (self) python; })).python;
orvibo = callPackage ../development/python-modules/orvibo { };