Commit d849229e authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

crocoddyl: 2.0.2 -> 2.1.0

parent 6d581993
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -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
  ];