mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 11:13:30 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
55 lines
924 B
Nix
55 lines
924 B
Nix
{ buildPythonPackage
|
|
, lib
|
|
, stdenv
|
|
, cmake
|
|
, cppe
|
|
, eigen
|
|
, python
|
|
, pybind11
|
|
, numpy
|
|
, h5py
|
|
, numba
|
|
, scipy
|
|
, pandas
|
|
, polarizationsolver
|
|
, pytest
|
|
, llvmPackages
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
inherit (cppe) pname version src meta;
|
|
|
|
# The python interface requires eigen3, but builds from a checkout in tree.
|
|
# Using the nixpkgs version instead.
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "external/eigen3" "${eigen}/include/eigen3"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
eigen
|
|
];
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
buildInputs = [ pybind11 ]
|
|
++ lib.optional stdenv.cc.isClang llvmPackages.openmp;
|
|
|
|
NIX_CFLAGS_LINK = lib.optional stdenv.cc.isClang "-lomp";
|
|
|
|
hardeningDisable = lib.optional stdenv.cc.isClang "strictoverflow";
|
|
|
|
nativeCheckInputs = [
|
|
pytest
|
|
h5py
|
|
numba
|
|
numpy
|
|
pandas
|
|
polarizationsolver
|
|
scipy
|
|
];
|
|
|
|
pythonImportsCheck = [ "cppe" ];
|
|
}
|