1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00

crocoddyl: 2.0.2 -> 2.1.0

This commit is contained in:
Guilhem Saurel 2024-05-28 11:20:17 +02:00
parent 6d581993d6
commit d849229ef6

View file

@ -10,14 +10,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "crocoddyl";
version = "2.0.2";
version = "2.1.0";
src = fetchFromGitHub {
owner = "loco-3d";
repo = finalAttrs.pname;
rev = "v${finalAttrs.version}";
fetchSubmodules = true;
hash = "sha256-MsAXHfxLNlIK/PbtVTjvBN1Jk3dyGEkfpj3/98nExj4=";
hash = "sha256-SVV9sleDXLm2QJmNgL25XLHC3y5bfKab4GSlE8jbT8w=";
};
strictDeps = true;
@ -50,7 +49,7 @@ stdenv.mkDerivation (finalAttrs: {
pythonImportsCheck = [
"crocoddyl"
];
checkInputs = lib.optionals (pythonSupport) [
checkInputs = lib.optionals pythonSupport [
python3Packages.scipy
];