Files
nixpkgs/pkgs/development/python-modules/meshcat/default.nix
T
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

50 lines
889 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, ipython
, u-msgpack-python
, numpy
, tornado
, pyzmq
, pyngrok
, pillow
}:
buildPythonPackage rec {
pname = "meshcat";
version = "0.3.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-LP4XzeT+hdByo94Bip2r9WJvgMJV//LOY7JqSNJIStk=";
};
postPatch = ''
sed -i '/PYTHONPATH/d' src/meshcat/servers/zmqserver.py
'';
propagatedBuildInputs = [
ipython
u-msgpack-python
numpy
tornado
pyzmq
pyngrok
pillow
];
pythonImportsCheck = [ "meshcat" ];
# requires a running MeshCat viewer
doCheck = false;
meta = with lib; {
homepage = "https://github.com/rdeits/meshcat-python";
description = "WebGL-based 3D visualizer for Python";
mainProgram = "meshcat-server";
license = licenses.mit;
maintainers = with maintainers; [ wegank ];
};
}