2021-02-17 17:02:09 +00:00
|
|
|
|
{ lib, isPy3k, fetchPypi, buildPythonPackage
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, uvloop, postgresql }:
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "asyncpg";
|
2021-08-18 13:19:15 +00:00
|
|
|
|
version = "0.24.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
2021-08-18 13:19:15 +00:00
|
|
|
|
sha256 = "sha256-3S+gY8M0SCNIfZ3cy0CALwJiLd+L+KbMU4he56LBwMY=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
|
uvloop
|
|
|
|
|
postgresql
|
|
|
|
|
];
|
|
|
|
|
|
2021-02-17 17:02:09 +00:00
|
|
|
|
pythonImportsCheck = [ "asyncpg" ];
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
meta = with lib; {
|
|
|
|
|
homepage = "https://github.com/MagicStack/asyncpg";
|
|
|
|
|
description = "An asyncio PosgtreSQL driver";
|
|
|
|
|
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 ];
|
|
|
|
|
};
|
|
|
|
|
}
|