depot/third_party/nixpkgs/pkgs/development/python-modules/asyncpg/default.nix

32 lines
836 B
Nix
Raw Normal View History

{ lib, isPy3k, fetchPypi, fetchpatch, buildPythonPackage
, uvloop, postgresql }:
buildPythonPackage rec {
pname = "asyncpg";
version = "0.21.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0gw665737pr9b0lmmxlnwgmw1sbwv00xp8jdxws1xxi6nc72mjsk";
};
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 Pythons
asyncio framework.
'';
license = licenses.asl20;
maintainers = with maintainers; [ eadwu ];
};
}