1{ buildPythonPackage
2, fetchPypi
3, lib
4, param
5, panel
6}:
7
8buildPythonPackage rec {
9 pname = "pyviz_comms";
10 version = "0.7.6";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "sha256-zZZJqeqd/LmzTXj5pk4YcKqLa5TeVG4smca7U9ZKtdE=";
15 };
16
17 propagatedBuildInputs = [ param ];
18
19 # there are not tests with the package
20 doCheck = false;
21
22 passthru.tests = {
23 inherit panel;
24 };
25
26 meta = with lib; {
27 description = "Launch jobs, organize the output, and dissect the results";
28 homepage = "https://pyviz.org/";
29 license = licenses.bsd3;
30 maintainers = [ maintainers.costrouc ];
31 };
32}