about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorGaetan Lepage <gaetan@glepage.com>2024-06-05 08:54:50 +0200
committerGaetan Lepage <gaetan@glepage.com>2024-06-07 08:21:18 +0200
commitda2ccbae0d6082acf447bf33dcf78f41e9f7794c (patch)
tree6a4f74172c4ac12d760a484c7e3c81652f18a258 /pkgs/development
parent7e7ddf4e4cc4cbf4af00d3ea35a658d63ed03c19 (diff)
python311Packages.mujoco: 3.1.5 -> 3.1.6
Changelog:
https://mujoco.readthedocs.io/en/latest/changelog.html#version-3-1-6-jun-3-2024
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/mujoco/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/mujoco/default.nix b/pkgs/development/python-modules/mujoco/default.nix
index 2ff364503060a..4045c0c7ac35d 100644
--- a/pkgs/development/python-modules/mujoco/default.nix
+++ b/pkgs/development/python-modules/mujoco/default.nix
@@ -18,7 +18,7 @@
 
 buildPythonPackage rec {
   pname = "mujoco";
-  version = "3.1.5";
+  inherit (mujoco) version;
 
   pyproject = true;
 
@@ -28,7 +28,7 @@ buildPythonPackage rec {
   # in the project's CI.
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-kJm6YAE0HMnji3uUuO96ZzRsdjj6PpT1IHQ6NXiR8pY=";
+    hash = "sha256-fPiIdSbwcedBHcAs4c1mXjm0tgg/3/Sf4TSKgtIxRlE=";
   };
 
   nativeBuildInputs = [
@@ -82,11 +82,11 @@ buildPythonPackage rec {
       ''
     );
 
-  meta = with lib; {
+  meta = {
     description = "Python bindings for MuJoCo: a general purpose physics simulator.";
     homepage = "https://mujoco.org/";
     changelog = "https://github.com/google-deepmind/mujoco/releases/tag/${version}";
-    license = licenses.asl20;
-    maintainers = with maintainers; [ tmplt ];
+    license = lib.licenses.asl20;
+    maintainers = with lib.maintainers; [ tmplt ];
   };
 }