mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, uvloop
|
|
, postgresql
|
|
, pythonOlder
|
|
, pytest-xdist
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "asyncpg";
|
|
version = "0.28.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-clLNw6yy9S/qo2ZCgNO814pGvWwQv9aBrP/++hEg4ng=";
|
|
};
|
|
|
|
# sandboxing issues on aarch64-darwin, see https://github.com/NixOS/nixpkgs/issues/198495
|
|
doCheck = postgresql.doCheck;
|
|
|
|
nativeCheckInputs = [
|
|
uvloop
|
|
postgresql
|
|
pytest-xdist
|
|
pytestCheckHook
|
|
];
|
|
|
|
preCheck = ''
|
|
rm -rf asyncpg/
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"asyncpg"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Asyncio PosgtreSQL driver";
|
|
homepage = "https://github.com/MagicStack/asyncpg";
|
|
changelog = "https://github.com/MagicStack/asyncpg/releases/tag/v${version}";
|
|
longDescription = ''
|
|
Asyncpg is a database interface library designed specifically for
|
|
PostgreSQL and Python/asyncio. asyncpg is an efficient, clean
|
|
implementation of PostgreSQL server binary protocol for use with Python's
|
|
asyncio framework.
|
|
'';
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ eadwu ];
|
|
};
|
|
}
|