summary refs log tree commit diff
path: root/pkgs/development/python-modules/pg8000/default.nix
blob: 8f63e00e7997f4b13fa84df0b0832bfdf35ce455 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, scramp
, isPy3k
, passlib
}:

buildPythonPackage rec {
  pname = "pg8000";
  version = "1.16.6";

  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "8fc1e6a62ccb7c9830f1e7e9288e2d20eaf373cc8875b5c55b7d5d9b7717be91";
  };

  propagatedBuildInputs = [ passlib scramp ];

  meta = with lib; {
    homepage = "https://github.com/tlocke/pg8000";
    description = "PostgreSQL interface library, for asyncio";
    maintainers = with maintainers; [ domenkozar ];
    platforms = platforms.unix;
  };

}