Files
nixpkgs/pkgs/development/python-modules/asyncpg/default.nix
T

32 lines
836 B
Nix
Raw Normal View History

2019-01-21 11:42:39 -05:00
{ lib, isPy3k, fetchPypi, fetchpatch, buildPythonPackage
, uvloop, postgresql }:
buildPythonPackage rec {
pname = "asyncpg";
2020-02-01 20:37:02 +00:00
version = "0.20.1";
2019-01-21 11:42:39 -05:00
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
2020-02-01 20:37:02 +00:00
sha256 = "1c4mcjrdbvvq5crrfc3b9m221qb6pxp55yynijihgfnvvndz2jrr";
2019-01-21 11:42:39 -05:00
};
checkInputs = [
uvloop
postgresql
];
meta = with lib; {
homepage = "https://github.com/MagicStack/asyncpg";
2019-01-21 11:42:39 -05: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 Pythons
asyncio framework.
'';
license = licenses.asl20;
maintainers = with maintainers; [ eadwu ];
};
}