14 buildPythonPackage rec {
19 disabled = pythonOlder "3.8";
22 inherit pname version;
23 hash = "sha256-HqRs8J2Oygf+fqre/XlR43vuf6vmdd8WTxpXL/swCHY=";
35 ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
37 # Tests require a running PostgreSQL instance
40 pythonImportsCheck = [ "pg8000" ];
43 description = "Python driver for PostgreSQL";
44 homepage = "https://github.com/tlocke/pg8000";
45 changelog = "https://github.com/tlocke/pg8000#release-notes";
46 license = with licenses; [ bsd3 ];
47 maintainers = with maintainers; [ domenkozar ];
48 platforms = platforms.unix;