nixpkgs/pkgs/development/python-modules/pybullet/default.nix

38 lines
742 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
2019-11-10 16:44:34 +00:00
, libGLU, libGL
, xorg
, numpy
}:
buildPythonPackage rec {
pname = "pybullet";
2020-08-16 18:31:11 +01:00
version = "2.8.7";
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:11 +01:00
sha256 = "9d3a8bdc9b4acce086c485ba719aabee33de7a867d84a058b182b139c789ad55";
};
buildInputs = [
2019-11-10 16:44:34 +00:00
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";
homepage = "https://pybullet.org/";
license = licenses.zlib;
maintainers = with maintainers; [ timokau ];
platforms = platforms.linux;
};
}