fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
65 lines
1.2 KiB
Nix
65 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
wheel,
|
|
|
|
psycopg,
|
|
aiosqlite,
|
|
asyncmy,
|
|
|
|
# test
|
|
pytest-asyncio,
|
|
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mayim";
|
|
version = "1.1.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ahopkins";
|
|
repo = "mayim";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-nb0E9kMEJUihaCp8RnqGh0nSyDQo50eL1C4K5lBPlPQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace "--cov=src --cov-append --cov-report term-missing" ""
|
|
'';
|
|
|
|
passthru.optional-dependencies = {
|
|
postgres = [ psycopg ] ++ psycopg.optional-dependencies.pool;
|
|
mysql = [ asyncmy ];
|
|
sqlite = [ aiosqlite ];
|
|
};
|
|
|
|
nativeCheckInputs =
|
|
[
|
|
pytestCheckHook
|
|
pytest-asyncio
|
|
]
|
|
++ (with passthru.optional-dependencies; [
|
|
postgres
|
|
mysql
|
|
sqlite
|
|
]);
|
|
|
|
pythonImportsCheck = [ "mayim" ];
|
|
|
|
meta = with lib; {
|
|
description = "Asynchronous SQL hydrator";
|
|
homepage = "https://github.com/ahopkins/mayim";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ huyngo ];
|
|
};
|
|
}
|