depot/third_party/nixpkgs/pkgs/development/python-modules/psycopg/default.nix
Default email 13da32182d Project import generated by Copybara.
GitOrigin-RevId: a7855f2235a1876f97473a76151fec2afa02b287
2022-08-21 15:32:41 +02:00

137 lines
2.5 KiB
Nix

{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, fetchurl
, pythonOlder
, substituteAll
# links (libpq)
, postgresql
# propagates
, backports-zoneinfo
, typing-extensions
# docs
, furo
, shapely
, sphinxHook
, sphinx-autodoc-typehints
# tests
, pproxy
, pytest-asyncio
, pytest-randomly
, pytestCheckHook
}:
let
pname = "psycopg";
version = "3.0.16";
in
buildPythonPackage {
inherit pname version;
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "psycopg";
repo = pname;
rev = version;
hash = "sha256-jKhpmCcDi7FyMSpn51eSukFvmu3yacNovmRYG9jnu3g=";
};
outputs = [
"out"
"doc"
];
sphinxRoot = "../docs";
# Introduce this file necessary for the docs build via environment var
LIBPQ_DOCS_FILE = fetchurl {
url = "https://raw.githubusercontent.com/postgres/postgres/REL_14_STABLE/doc/src/sgml/libpq.sgml";
hash = "sha256-yn09fR9+7zQni8SvTG7BUmYRD7MK7u2arVAznWz2oAw=";
};
patches = [
(substituteAll {
src = ./libpq.patch;
libpq = "${postgresql.lib}/lib/libpq${stdenv.hostPlatform.extensions.sharedLibrary}";
})
];
# only move to sourceRoot after patching, makes patching easier
postPatch = ''
cd ${pname}
'';
nativeBuildInputs = [
furo
shapely
sphinxHook
sphinx-autodoc-typehints
];
propagatedBuildInputs = lib.optionals (pythonOlder "3.11") [
typing-extensions
] ++ lib.optionals (pythonOlder "3.9") [
backports-zoneinfo
];
pythonImportsCheck = [
"psycopg"
];
passthru.optional-dependencies = {
# TODO: package remaining variants
#c = [ psycopg-c ];
#pool = [ psycopg-pool ];
};
preCheck = ''
cd ..
'';
checkInputs = [
pproxy
pytest-asyncio
pytest-randomly
pytestCheckHook
postgresql
];
disabledTests = [
# linters shouldn't be run in checks
"test_version"
];
disabledTestPaths = [
# TODO: requires the pooled variant
"tests/pool/"
# Network access
"tests/test_dns.py"
"tests/test_dns_srv.py"
# Mypy typing test
"tests/test_typing.py"
];
pytestFlagsArray = [
"-o cache_dir=$TMPDIR"
];
postCheck = ''
cd ${pname}
'';
meta = with lib; {
changelog = "https://github.com/psycopg/psycopg/blob/master/docs/news.rst";
description = "PostgreSQL database adapter for Python";
homepage = "https://github.com/psycopg/psycopg";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ hexa ];
};
}