Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
494 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildPythonPackage,
meson-python,
ninja,
setuptools,
pkg-config,
dftd4,
cffi,
numpy,
}:
buildPythonPackage {
inherit (dftd4)
pname
version
src
meta
;
pyproject = true;
buildInputs = [ dftd4 ];
nativeBuildInputs = [
pkg-config
ninja
];
build-system = [
meson-python
setuptools
];
dependencies = [
cffi
numpy
];
preConfigure = ''
cd python
'';
pythonImportsCheck = [ "dftd4" ];
doCheck = true;
}