3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/pybullet/default.nix

35 lines
693 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
2019-11-10 16:44:34 +00:00
, libGLU, libGL
, xorg
}:
buildPythonPackage rec {
pname = "pybullet";
2019-12-10 18:07:41 +00:00
version = "2.5.8";
src = fetchPypi {
inherit pname version;
2019-12-10 18:07:41 +00:00
sha256 = "5824e902e0dd8bf7177ce5d9e038c6b04be65f72621fe13f93ec15c9d9c85a49";
};
buildInputs = [
2019-11-10 16:44:34 +00:00
libGLU libGL
xorg.libX11
];
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";
homepage = https://pybullet.org/;
license = licenses.zlib;
maintainers = with maintainers; [ timokau ];
platforms = platforms.linux;
};
}