Skip to content

Commit

Permalink
python3Packages.asyncpg: init at 0.18.3
Browse files Browse the repository at this point in the history
  • Loading branch information
eadwu committed Aug 13, 2019
1 parent eaa81a4 commit ee2161c
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
38 changes: 38 additions & 0 deletions pkgs/development/python-modules/asyncpg/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{ lib, isPy3k, fetchPypi, fetchpatch, buildPythonPackage
, uvloop, postgresql }:

buildPythonPackage rec {
pname = "asyncpg";
version = "0.18.3";
disabled = !isPy3k;

src = fetchPypi {
inherit pname version;
sha256 = "0rrch478ww6ipmh3617sb2jzwsq4w7pjcck869p35zb0mk5fr9aq";
};

patches = [
(fetchpatch {
url = "https://github.com/MagicStack/asyncpg/commit/aaeb7076e5acb045880b46155014c0640624797e.patch";
sha256 = "0r6g6pvb39vzci8g67mv9rlrvavqvfz6vlv8988wv53bpz1mss3p";
})
];

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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1342,6 +1342,8 @@ in {

astor = callPackage ../development/python-modules/astor {};

asyncpg = callPackage ../development/python-modules/asyncpg { };

asyncssh = callPackage ../development/python-modules/asyncssh { };

python-fontconfig = callPackage ../development/python-modules/python-fontconfig { };
Expand Down

0 comments on commit ee2161c

Please sign in to comment.