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
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 ];
};
}