depot/third_party/nixpkgs/pkgs/development/python-modules/mayim/default.nix
Default email 472aeafc57 Project import generated by Copybara.
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
2024-10-04 18:56:33 +02:00

62 lines
1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
wheel,
psycopg,
aiosqlite,
asyncmy,
# test
pytest-asyncio,
pytest-cov-stub,
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=";
};
build-system = [
setuptools
wheel
];
optional-dependencies = {
postgres = [ psycopg ] ++ psycopg.optional-dependencies.pool;
mysql = [ asyncmy ];
sqlite = [ aiosqlite ];
};
nativeCheckInputs =
[
pytestCheckHook
pytest-asyncio
pytest-cov-stub
]
++ (with 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 ];
};
}