Merge pull request #246209 from 70m6/feature/numcpp

numcpp: init at 2.11.0
This commit is contained in:
Robert Scott 2023-08-05 20:18:03 +01:00 committed by GitHub
commit dcead249cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1,48 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
boost,
python3,
gtest,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "numcpp";
version = "2.11.0";
src = fetchFromGitHub {
owner = "dpilger26";
repo = "NumCpp";
rev = "Version_${finalAttrs.version}";
hash = "sha256-IAku1bcaMkawZxpQbvxcS6VX07ogw4UGo1DX2Wa8xwU=";
};
nativeCheckInputs = [gtest python3];
nativeBuildInputs = [cmake];
buildInputs = [boost];
cmakeFlags = lib.optionals finalAttrs.finalPackage.doCheck [
"-DBUILD_TESTS=ON"
"-DBUILD_MULTIPLE_TEST=ON"
];
doCheck = !stdenv.isDarwin && !stdenv.hostPlatform.isStatic;
postInstall = ''
substituteInPlace $out/share/NumCpp/cmake/NumCppConfig.cmake \
--replace "\''${PACKAGE_PREFIX_DIR}/" ""
'';
NIX_CFLAGS_COMPILE="-Wno-error";
meta = with lib; {
description = "A Templatized Header Only C++ Implementation of the Python NumPy Library";
homepage = "https://github.com/dpilger26/NumCpp";
license = licenses.mit;
maintainers = with maintainers; [spalf];
platforms = platforms.unix;
};
})

View file

@ -23903,6 +23903,8 @@ with pkgs;
ntrack = callPackage ../development/libraries/ntrack { };
numcpp = callPackage ../development/libraries/numcpp { };
nuraft = callPackage ../development/libraries/nuraft { };
nuspell = callPackage ../development/libraries/nuspell { };