2019-02-24 18:22:24 +03:00
|
|
|
{ buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, lib
|
|
|
|
, param
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyviz_comms";
|
2020-04-24 12:32:18 +03:00
|
|
|
version = "0.7.4";
|
2019-02-24 18:22:24 +03:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-04-24 12:32:18 +03:00
|
|
|
sha256 = "092nl8pq1jqdylj0xyqwgi5qxvhy6qj2nx2lwwfkbnixlg6g8bbi";
|
2019-02-24 18:22:24 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ param ];
|
|
|
|
|
|
|
|
# there are not tests with the package
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Launch jobs, organize the output, and dissect the results";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://pyviz.org/";
|
2019-02-24 18:22:24 +03:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.costrouc ];
|
|
|
|
};
|
|
|
|
}
|