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:
@@ -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 { };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user