python3Packages.libxc: init at 7.0.0

This commit is contained in:
Phillip Seeber
2025-12-19 15:09:39 +01:00
parent 3a0d49a949
commit ed9857820a
2 changed files with 38 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
{
buildPythonPackage,
lib,
libxc,
setuptools,
cmake,
numpy,
}:
buildPythonPackage {
inherit (libxc)
pname
version
src
patches
meta
nativeBuildInputs
;
pyproject = true;
build-system = [
setuptools
cmake
];
dependencies = [
numpy
];
dontUseCmakeConfigure = true;
pythonImportsCheck = [ "pylibxc" ];
}
+4
View File
@@ -8655,6 +8655,10 @@ self: super: with self; {
libvirt = callPackage ../development/python-modules/libvirt { inherit (pkgs) libvirt; };
libxc = callPackage ../by-name/li/libxc/python.nix {
libxc = pkgs.libxc_7;
};
libxml2 =
(toPythonModule (
pkgs.libxml2.override {