Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pyviz-comms / default.nix
blob4b367849499089364c0d1b8ee67611eb48fb9821
1 { buildPythonPackage
2 , fetchPypi
3 , lib
4 , param
5 , panel
6 }:
8 buildPythonPackage rec {
9   pname = "pyviz_comms";
10   version = "2.2.1";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-omFFuM5D0tk0s8aCbXe5E84QXFKOsuSUyJCz41Jd3zM=";
15   };
17   propagatedBuildInputs = [ param ];
19   # there are not tests with the package
20   doCheck = false;
22   pythonImportsCheck = [ "pyviz_comms" ];
24   passthru.tests = {
25     inherit panel;
26   };
28   meta = with lib; {
29     description = "Launch jobs, organize the output, and dissect the results";
30     homepage = "https://pyviz.org/";
31     license = licenses.bsd3;
32     maintainers = [ ];
33   };