eigenpy: 3.4.0 -> 3.5.0

This commit is contained in:
Guilhem Saurel 2024-04-14 14:08:33 +02:00 committed by Weijia Wang
parent 48e5f7743f
commit bacc51efb4
1 changed files with 25 additions and 19 deletions

View File

@ -1,26 +1,32 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, doxygen
, boost
, eigen
, numpy
, scipy
{
lib,
stdenv,
fetchFromGitHub,
cmake,
doxygen,
boost,
eigen,
jrl-cmakemodules,
numpy,
scipy,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "eigenpy";
version = "3.4.0";
version = "3.5.0";
src = fetchFromGitHub {
owner = "stack-of-tasks";
repo = finalAttrs.pname;
repo = "eigenpy";
rev = "v${finalAttrs.version}";
fetchSubmodules = true;
hash = "sha256-/k5eltoeUW05FTjvStAOw+tguWLUaUced8TArrk4UDI=";
};
outputs = [
"dev"
"out"
];
cmakeFlags = [
"-DINSTALL_DOCUMENTATION=ON"
"-DBUILD_TESTING_SCIPY=ON"
@ -34,26 +40,26 @@ stdenv.mkDerivation (finalAttrs: {
scipy
];
buildInputs = [
boost
];
buildInputs = [ boost ];
propagatedBuildInputs = [
eigen
jrl-cmakemodules
numpy
];
doCheck = true;
pythonImportsCheck = [
"eigenpy"
];
pythonImportsCheck = [ "eigenpy" ];
meta = with lib; {
description = "Bindings between Numpy and Eigen using Boost.Python";
homepage = "https://github.com/stack-of-tasks/eigenpy";
changelog = "https://github.com/stack-of-tasks/eigenpy/releases/tag/v${version}";
license = licenses.bsd2;
maintainers = with maintainers; [ nim65s wegank ];
maintainers = with maintainers; [
nim65s
wegank
];
platforms = platforms.unix;
};
})