numcpp: init at 2.11.0
This commit is contained in:
parent
a865d875b8
commit
83f9448e64
48
pkgs/development/libraries/numcpp/default.nix
Normal file
48
pkgs/development/libraries/numcpp/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -23840,6 +23840,8 @@ with pkgs;
|
||||
|
||||
ntrack = callPackage ../development/libraries/ntrack { };
|
||||
|
||||
numcpp = callPackage ../development/libraries/numcpp { };
|
||||
|
||||
nuraft = callPackage ../development/libraries/nuraft { };
|
||||
|
||||
nuspell = callPackage ../development/libraries/nuspell { };
|
||||
|
Loading…
Reference in New Issue
Block a user