python3Packages.pyviz-comms: 2.0.1 -> 0.7.6

Downgrade to 0.7.6 because its dependents (panel, holoviews) do not seem
to be compatible yet with this 2.x.
This commit is contained in:
Frederik Rietdijk 2021-04-24 11:22:10 +02:00
parent 94d73b52f2
commit 8fce6f7625

View File

@ -2,15 +2,16 @@
, fetchPypi
, lib
, param
, panel
}:
buildPythonPackage rec {
pname = "pyviz_comms";
version = "2.0.1";
version = "0.7.6";
src = fetchPypi {
inherit pname version;
sha256 = "be63957a49772895ddebeac02c697e1675e0bdf1515824f60fcc261914f23624";
sha256 = "sha256-zZZJqeqd/LmzTXj5pk4YcKqLa5TeVG4smca7U9ZKtdE=";
};
propagatedBuildInputs = [ param ];
@ -18,6 +19,10 @@ buildPythonPackage rec {
# 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/";