Merge pull request #320945 from Aleksanaa/eigenpy

This commit is contained in:
Sandro
2024-06-24 14:04:03 +02:00
committed by GitHub
2 changed files with 9 additions and 8 deletions
@@ -1,6 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
cmake,
doxygen,
@@ -11,15 +11,16 @@
scipy,
}:
stdenv.mkDerivation (finalAttrs: {
buildPythonPackage rec {
pname = "eigenpy";
version = "3.6.0";
version = "3.7.0";
pyproject = false; # Built with cmake
src = fetchFromGitHub {
owner = "stack-of-tasks";
repo = "eigenpy";
rev = "v${finalAttrs.version}";
hash = "sha256-S6kMfpTOMqJPIFgvdcHHFDvIl2b+GE8dhJH0QFDdC1c=";
rev = "v${version}";
hash = "sha256-D/k/ka500EZch5Ydym2WYtd5vciGkd9rdBUSjTsZ0w4=";
};
outputs = [
@@ -55,7 +56,7 @@ stdenv.mkDerivation (finalAttrs: {
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${finalAttrs.version}";
changelog = "https://github.com/stack-of-tasks/eigenpy/releases/tag/v${version}";
license = licenses.bsd2;
maintainers = with maintainers; [
nim65s
@@ -63,4 +64,4 @@ stdenv.mkDerivation (finalAttrs: {
];
platforms = platforms.unix;
};
})
}
+1 -1
View File
@@ -3792,7 +3792,7 @@ self: super: with self; {
eggdeps = callPackage ../development/python-modules/eggdeps { };
eigenpy = toPythonModule (callPackage ../development/python-modules/eigenpy { });
eigenpy = callPackage ../development/python-modules/eigenpy { };
einops = callPackage ../development/python-modules/einops { };