pythonPackages.pyviz-comms: init at 0.7.0

This commit is contained in:
Chris Ostrouchov 2019-02-24 10:22:24 -05:00
parent cf62881636
commit 5b3d8888f7
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ buildPythonPackage
, fetchPypi
, lib
, param
}:
buildPythonPackage rec {
pname = "pyviz_comms";
version = "0.7.0";
src = fetchPypi {
inherit pname version;
sha256 = "7ad4ff0c2166f0296ee070049ce21341f868f907003714eb6eaf1630ea8e241a";
};
propagatedBuildInputs = [ param ];
# there are not tests with the package
doCheck = false;
meta = with lib; {
description = "Launch jobs, organize the output, and dissect the results";
homepage = http://pyviz.org/;
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}

View File

@ -3568,6 +3568,8 @@ in {
pystringtemplate = callPackage ../development/python-modules/stringtemplate { };
pyviz-comms = callPackage ../development/python-modules/pyviz-comms { };
pillow = callPackage ../development/python-modules/pillow {
inherit (pkgs) freetype libjpeg zlib libtiff libwebp tcl lcms2 tk;
inherit (pkgs.xorg) libX11;