Commit ed985782 authored by Phillip Seeber's avatar Phillip Seeber
Browse files

python3Packages.libxc: init at 7.0.0

parent 3a0d49a9
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 {