blob: 95dbed9a924c47a6f5563a6924d767ab3443d02f (
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
35
36
37
38
39
40
41
42
43
44
45
|
{
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;
};
}
|