5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
53 lines
1,002 B
Nix
53 lines
1,002 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, importlib-metadata
|
|
, passlib
|
|
, python-dateutil
|
|
, pythonOlder
|
|
, scramp
|
|
, hatchling
|
|
, versioningit
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pg8000";
|
|
version = "1.31.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-sREw1MYV3TBi6o/tgUMGSnl4t/5tRPFLciYdQ8jicIc=";
|
|
};
|
|
|
|
build-system = [
|
|
hatchling
|
|
versioningit
|
|
];
|
|
|
|
dependencies = [
|
|
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;
|
|
};
|
|
}
|