summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyviz-comms/default.nix
blob: e9e07de4df2d6f2db39a3b201e3cceeeab584332 (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
{ buildPythonPackage
, fetchPypi
, lib
, param
, panel
}:

buildPythonPackage rec {
  pname = "pyviz_comms";
  version = "0.7.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-zZZJqeqd/LmzTXj5pk4YcKqLa5TeVG4smca7U9ZKtdE=";
  };

  propagatedBuildInputs = [ param ];

  # there are not tests with the package
  doCheck = false;

  passthru.tests = {
    inherit panel;
  };

  meta = with lib; {
    description = "Launch jobs, organize the output, and dissect the results";
    homepage = "https://pyviz.org/";
    license = licenses.bsd3;
    maintainers = [ maintainers.costrouc ];
  };
}