Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / meshcat / default.nix
blobff1ef37b22e57e9e3fc885e93ec8ceedbfe62cd3
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , ipython
5 , u-msgpack-python
6 , numpy
7 , tornado
8 , pyzmq
9 , pyngrok
10 , pillow
13 buildPythonPackage rec {
14   pname = "meshcat";
15   version = "0.3.2";
16   format = "setuptools";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-LP4XzeT+hdByo94Bip2r9WJvgMJV//LOY7JqSNJIStk=";
21   };
23   postPatch = ''
24     sed -i '/PYTHONPATH/d' src/meshcat/servers/zmqserver.py
25   '';
27   propagatedBuildInputs = [
28     ipython
29     u-msgpack-python
30     numpy
31     tornado
32     pyzmq
33     pyngrok
34     pillow
35   ];
37   pythonImportsCheck = [ "meshcat" ];
39   # requires a running MeshCat viewer
40   doCheck = false;
42   meta = with lib; {
43     homepage = "https://github.com/rdeits/meshcat-python";
44     description = "WebGL-based 3D visualizer for Python";
45     mainProgram = "meshcat-server";
46     license = licenses.mit;
47     maintainers = with maintainers; [ wegank ];
48   };