From 8fce6f76254543f8faf7900590a998d95cbc917f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 24 Apr 2021 11:22:10 +0200 Subject: [PATCH] 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. --- pkgs/development/python-modules/pyviz-comms/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyviz-comms/default.nix b/pkgs/development/python-modules/pyviz-comms/default.nix index d2771da1b525..e9e07de4df2d 100644 --- a/pkgs/development/python-modules/pyviz-comms/default.nix +++ b/pkgs/development/python-modules/pyviz-comms/default.nix @@ -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/";