fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
50 lines
1,002 B
Nix
50 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;
|
|
};
|
|
}
|