By replacing upstream's pg_config binary with a shell script, we: - gain the ability to run pg_config easily when cross-compiling, - can remove the fake pg_config in the default output, - can remove the pg_config wrapper script dealing with special cases. Some 20 years ago, pg_config *was* a shell script upstream, too. It was changed to a binary, when it was made "relocatable", so it would return paths depending on the location of the "postgres" binary. However, this is exactly the thing that just hurts us in nixpkgs - we don't want those paths to change, we want them to always point at the right outputs. By writing the script ourselves, this becomes a lot less painful. This approach means more lines of codes, but all of them are dead simple and we have a lot less complexity overall. Additionally, pg_config is now made a separate derivation, only exposed as "postgresql.pg_config". This has the nice side-effect, that all users of postgresql and libpq in nixpkgs must be very *explicit* about their dependency on pg_config. This gives a lot more visibility into the state of affairs regarding pkg-config support for libpq, which ultimately is the much better solution.
72 lines
1.4 KiB
Nix
72 lines
1.4 KiB
Nix
{
|
|
buildPythonPackage,
|
|
cffi,
|
|
fetchFromGitHub,
|
|
lib,
|
|
libpq,
|
|
postgresql,
|
|
postgresqlTestHook,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
six,
|
|
stdenv,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "psycopg2cffi";
|
|
version = "2.9.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "chtd";
|
|
repo = "psycopg2cffi";
|
|
tag = version;
|
|
hash = "sha256-9r5MYxw9cvdbLVj8StmMmn0AKQepOpCc7TIBGXZGWe4=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace psycopg2cffi/_impl/_build_libpq.py \
|
|
--replace-fail "from distutils import sysconfig" "import sysconfig" \
|
|
--replace-fail "sysconfig.get_python_inc()" "sysconfig.get_path('include')"
|
|
'';
|
|
|
|
buildInputs = [ libpq ];
|
|
nativeBuildInputs = [ libpq.pg_config ];
|
|
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
cffi
|
|
six
|
|
];
|
|
|
|
# FATAL: could not create shared memory segment: Operation not permitted
|
|
doCheck = !stdenv.hostPlatform.isDarwin;
|
|
|
|
nativeCheckInputs = [
|
|
postgresql
|
|
postgresqlTestHook
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# AssertionError: '{}' != []
|
|
"testEmptyArray"
|
|
];
|
|
|
|
env = {
|
|
PGDATABASE = "psycopg2_test";
|
|
};
|
|
|
|
pythonImportsCheck = [ "psycopg2cffi" ];
|
|
|
|
meta = with lib; {
|
|
description = "Implementation of the psycopg2 module using cffi";
|
|
homepage = "https://pypi.org/project/psycopg2cffi/";
|
|
license = with licenses; [ lgpl3Plus ];
|
|
maintainers = with maintainers; [ lovesegfault ];
|
|
};
|
|
}
|