Skip to content

Commit

Permalink
python312Packages.sqlalchemy-mixins: add aiosqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Nov 1, 2024
1 parent 2b2a853 commit 500bc3e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pkgs/development/python-modules/sqlalchemy-mixins/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
lib,
aiosqlite,
buildPythonPackage,
fetchFromGitHub,
setuptools,
Expand All @@ -18,7 +19,7 @@ buildPythonPackage rec {

src = fetchFromGitHub {
owner = "absent1706";
repo = pname;
repo = "sqlalchemy-mixins";
rev = "refs/tags/v${version}";
hash = "sha256-0uB3x7RQSNEq3DyTSiOIGajwPQQEBjXK8HOyuXCNa/E=";
};
Expand All @@ -30,7 +31,10 @@ buildPythonPackage rec {
sqlalchemy
];

nativeCheckInputs = [ pytestCheckHook ];
nativeCheckInputs = [
aiosqlite
pytestCheckHook
];

pythonImportsCheck = [ "sqlalchemy_mixins" ];

Expand Down

0 comments on commit 500bc3e

Please sign in to comment.