summary refs log tree commit diff
path: root/pkgs/development/python-modules/pybullet/default.nix
blob: d7b46f07749d4e50db326676f98615eb9d91562a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib
, buildPythonPackage
, fetchPypi
, libGLU, libGL
, xorg
}:

buildPythonPackage rec {
  pname = "pybullet";
  version = "2.6.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c6da064687ae481c73b744b9f3a62d8231349a6bf368d7a2e564f71ef73e9403";
  };

  buildInputs = [
    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;
  };
}