pythonPackages.pyviz-comms: init at 0.7.0
This commit is contained in:
parent
cf62881636
commit
5b3d8888f7
27
pkgs/development/python-modules/pyviz-comms/default.nix
Normal file
27
pkgs/development/python-modules/pyviz-comms/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -3568,6 +3568,8 @@ in {
|
|||||||
|
|
||||||
pystringtemplate = callPackage ../development/python-modules/stringtemplate { };
|
pystringtemplate = callPackage ../development/python-modules/stringtemplate { };
|
||||||
|
|
||||||
|
pyviz-comms = callPackage ../development/python-modules/pyviz-comms { };
|
||||||
|
|
||||||
pillow = callPackage ../development/python-modules/pillow {
|
pillow = callPackage ../development/python-modules/pillow {
|
||||||
inherit (pkgs) freetype libjpeg zlib libtiff libwebp tcl lcms2 tk;
|
inherit (pkgs) freetype libjpeg zlib libtiff libwebp tcl lcms2 tk;
|
||||||
inherit (pkgs.xorg) libX11;
|
inherit (pkgs.xorg) libX11;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user