fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
35 lines
641 B
Nix
35 lines
641 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
lib,
|
|
param,
|
|
panel,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyviz_comms";
|
|
version = "2.2.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-omFFuM5D0tk0s8aCbXe5E84QXFKOsuSUyJCz41Jd3zM=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ param ];
|
|
|
|
# there are not tests with the package
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pyviz_comms" ];
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|