Files
2025-12-19 15:09:39 +01:00

35 lines
374 B
Nix

{
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" ];
}