nixpkgs/pkgs/development/python-modules/pyviz-comms/default.nix
Frederik Rietdijk 8fce6f7625 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.
2021-04-24 11:22:10 +02:00

33 lines
614 B
Nix

{ buildPythonPackage
, fetchPypi
, lib
, param
, panel
}:
buildPythonPackage rec {
pname = "pyviz_comms";
version = "0.7.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-zZZJqeqd/LmzTXj5pk4YcKqLa5TeVG4smca7U9ZKtdE=";
};
propagatedBuildInputs = [ param ];
# 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/";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}