python312Packages.sqlalchemy-mixins: add aiosqlite (#352980)

This commit is contained in:
Theodore Ni
2024-11-01 14:02:47 -07:00
committed by GitHub
@@ -1,5 +1,6 @@
{
lib,
aiosqlite,
buildPythonPackage,
fetchFromGitHub,
setuptools,
@@ -18,7 +19,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "absent1706";
repo = pname;
repo = "sqlalchemy-mixins";
rev = "refs/tags/v${version}";
hash = "sha256-0uB3x7RQSNEq3DyTSiOIGajwPQQEBjXK8HOyuXCNa/E=";
};
@@ -30,7 +31,10 @@ buildPythonPackage rec {
sqlalchemy
];
nativeCheckInputs = [ pytestCheckHook ];
nativeCheckInputs = [
aiosqlite
pytestCheckHook
];
pythonImportsCheck = [ "sqlalchemy_mixins" ];