blob: 3bd937c6d492fcb8ff2c9e4812664b11f67c0f7a (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
{ lib
, buildPythonPackage
, fetchPypi
, importlib-metadata
, passlib
, python-dateutil
, pythonOlder
, scramp
, setuptools
, versioningit
}:
buildPythonPackage rec {
pname = "pg8000";
version = "1.30.5";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-By960AzXI2lcsun8AsHfuEx4FFXpe43m9MQoHuoIB4w=";
};
nativeBuildInputs = [
setuptools
versioningit
];
propagatedBuildInputs = [
passlib
python-dateutil
scramp
] ++ lib.optionals (pythonOlder "3.8") [
importlib-metadata
];
# Tests require a running PostgreSQL instance
doCheck = false;
pythonImportsCheck = [
"pg8000"
];
meta = with lib; {
description = "Python driver for PostgreSQL";
homepage = "https://github.com/tlocke/pg8000";
changelog = "https://github.com/tlocke/pg8000#release-notes";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ domenkozar ];
platforms = platforms.unix;
};
}
|