2019-01-21 16:42:39 +00:00
|
|
|
|
{ lib, isPy3k, fetchPypi, fetchpatch, buildPythonPackage
|
|
|
|
|
, uvloop, postgresql }:
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "asyncpg";
|
2020-08-16 18:30:50 +01:00
|
|
|
|
version = "0.21.0";
|
2019-01-21 16:42:39 +00:00
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
2020-08-16 18:30:50 +01:00
|
|
|
|
sha256 = "53cb2a0eb326f61e34ef4da2db01d87ce9c0ebe396f65a295829df334e31863f";
|
2019-01-21 16:42:39 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
|
uvloop
|
|
|
|
|
postgresql
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://github.com/MagicStack/asyncpg";
|
2019-01-21 16:42:39 +00:00
|
|
|
|
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 ];
|
|
|
|
|
};
|
|
|
|
|
}
|