postgresqlPackages.plpython3: set pname and version instead of name

This commit is contained in:
jopejoe1
2026-02-02 22:24:55 +01:00
parent 8badc249e9
commit 62485112eb
@@ -11,7 +11,8 @@ let
let
python = python3.withPackages f;
finalPackage = buildEnv {
name = "${postgresql.pname}-plpython3-${postgresql.version}";
pname = "${postgresql.pname}-plpython3";
inherit (postgresql) version;
paths = [ postgresql.plpython3 ];
passthru = {
inherit withPackages;