python3Packages.[pysscf,gpaw]: fix build

The introduction of libxc into pythonPackages
in https://github.com/NixOS/nixpkgs/pull/471599 causes
a naming conflict for other python pacackages that dependend
on the C version of libxc.
This commit is contained in:
Markus Kowalewski
2025-12-24 14:15:55 +01:00
parent a3d7f250ac
commit c8bc2a9d22
+6 -2
View File
@@ -6428,7 +6428,9 @@ self: super: with self; {
gower = callPackage ../development/python-modules/gower { };
gpaw = callPackage ../development/python-modules/gpaw { };
gpaw = callPackage ../development/python-modules/gpaw {
inherit (pkgs) libxc;
};
gpgme = callPackage ../development/python-modules/gpgme { inherit (pkgs) gpgme; };
@@ -14496,7 +14498,9 @@ self: super: with self; {
pyscard = callPackage ../development/python-modules/pyscard { };
pyscf = callPackage ../development/python-modules/pyscf { };
pyscf = callPackage ../development/python-modules/pyscf {
inherit (pkgs) libxc;
};
pyschedule = callPackage ../development/python-modules/pyschedule { };