python311Packages.pybullet 3.2.5 -> 3.2.6 https://repology.org/project/python:pybullet/versions attrpath: python311Packages.pybullet Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/sh9qgwivcagacahk547z9yin0ykcldmf-packages.json.drv building '/nix/store/sh9qgwivcagacahk547z9yin0ykcldmf-packages.json.drv'... Going to be running update for following packages: - python3.11-pybullet-3.2.5 Press Enter key to continue... Running update for: - python3.11-pybullet-3.2.5: UPDATING ... - python3.11-pybullet-3.2.5: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/pybullet/default.nix b/pkgs/development/python-modules/pybullet/default.nix index 197d07907128..7e62bcfc20b1 100644 --- a/pkgs/development/python-modules/pybullet/default.nix +++ b/pkgs/development/python-modules/pybullet/default.nix @@ -8,12 +8,12 @@ buildPythonPackage rec { pname = "pybullet"; - version = "3.2.5"; + version = "3.2.6"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-G8ua+4eghr4bLeGPCE0f2rgZTaG/cfJkdDyia6o5w1E="; + hash = "sha256-2idSVDPIhpjcn9i8IPpK5NB3OLRlZjNlnr2CwtKITgg="; }; buildInputs = [ No auto update branch exists Old version 3.2.5" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , setuptools , libGLU, libGL , xorg , numpy }: buildPythonPackage rec { pname = "pybullet"; version = "3.2.6"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-2idSVDPIhpjcn9i8IPpK5NB3OLRlZjNlnr2CwtKITgg="; }; nativeBuildInputs = [ setuptools ]; buildInputs = [ libGLU libGL xorg.libX11 ]; propagatedBuildInputs = [ numpy ]; patches = [ # make sure X11 and OpenGL can be found at runtime ./static-libs.patch ]; meta = with lib; { description = "Open-source software for robot simulation, integrated with OpenAI Gym"; downloadPage = "https://github.com/bulletphysics/bullet3"; homepage = "https://pybullet.org/"; license = licenses.zlib; maintainers = with maintainers; [ timokau ]; platforms = platforms.linux; }; }