2019-01-21 16:42:39 +00:00
|
|
|
|
{ lib, isPy3k, fetchPypi, fetchpatch, buildPythonPackage
|
|
|
|
|
, uvloop, postgresql }:
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "asyncpg";
|
2019-10-11 13:28:54 +01:00
|
|
|
|
version = "0.19.0";
|
2019-01-21 16:42:39 +00:00
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
2019-10-11 13:28:54 +01:00
|
|
|
|
sha256 = "0sp3m6sgw83rhvg87y78lhk4xxx58ffzyf9rsq5f1a7b8azbnlxj";
|
2019-01-21 16:42:39 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
|
uvloop
|
|
|
|
|
postgresql
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
|
};
|
|
|
|
|
}
|