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.

+7 -2
+7 -2
pkgs/development/python-modules/pyviz-comms/default.nix
··· 2 , fetchPypi 3 , lib 4 , param 5 }: 6 7 buildPythonPackage rec { 8 pname = "pyviz_comms"; 9 - version = "2.0.1"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "be63957a49772895ddebeac02c697e1675e0bdf1515824f60fcc261914f23624"; 14 }; 15 16 propagatedBuildInputs = [ param ]; 17 18 # there are not tests with the package 19 doCheck = false; 20 21 meta = with lib; { 22 description = "Launch jobs, organize the output, and dissect the results";
··· 2 , fetchPypi 3 , lib 4 , param 5 + , panel 6 }: 7 8 buildPythonPackage 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";