2019-02-24 15:22:24 +00:00
|
|
|
{ buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, lib
|
|
|
|
, param
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyviz_comms";
|
2019-04-16 18:15:40 +01:00
|
|
|
version = "0.7.2";
|
2019-02-24 15:22:24 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-16 18:15:40 +01:00
|
|
|
sha256 = "c1722a496b08eb20ae3f2fedcc1ebcd207567b62e6453c7198a0b8f78ae96049";
|
2019-02-24 15:22:24 +00: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-01-10 20:17:37 +00:00
|
|
|
homepage = https://pyviz.org/;
|
2019-02-24 15:22:24 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.costrouc ];
|
|
|
|
};
|
|
|
|
}
|