python311Packages.sqlmodel: init at 0.0.12

Module to work with SQL databases

https://github.com/tiangolo/sqlmodel
This commit is contained in:
Fabian Affolter
2023-11-25 00:50:02 +01:00
parent 3b68824528
commit 123039eb37
2 changed files with 60 additions and 0 deletions
@@ -0,0 +1,58 @@
{ lib
, buildPythonPackage
, fastapi
, fetchFromGitHub
, poetry-core
, pydantic
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, sqlalchemy
}:
buildPythonPackage rec {
pname = "sqlmodel";
version = "0.0.12";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "tiangolo";
repo = "sqlmodel";
rev = "refs/tags/${version}";
hash = "sha256-ER8NGDcCCCXT8lsm8fgJUaLyjdf5v2/UdrBw5T9EeXQ=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
pydantic
sqlalchemy
];
nativeCheckInputs = [
fastapi
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [
"sqlmodel"
];
disabledTestPaths = [
# Coverage
"tests/test_tutorial/test_create_db_and_table/test_tutorial001.py"
];
meta = with lib; {
description = "Module to work with SQL databases";
homepage = "https://github.com/tiangolo/sqlmodel";
changelog = "https://github.com/tiangolo/sqlmodel/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -13417,6 +13417,8 @@ self: super: with self; {
sqlmap = callPackage ../development/python-modules/sqlmap { };
sqlmodel = callPackage ../development/python-modules/sqlmodel { };
sqlobject = callPackage ../development/python-modules/sqlobject { };
sqlparse = callPackage ../development/python-modules/sqlparse { };