2019-02-24 15:22:24 +00:00
|
|
|
{ buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, lib
|
|
|
|
, param
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyviz_comms";
|
2019-04-02 19:55:05 +01:00
|
|
|
version = "0.7.1";
|
2019-02-24 15:22:24 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-02 19:55:05 +01:00
|
|
|
sha256 = "045bjs8na3q0fy8zzq4pghyz05d9aid1lcv11992f62z2jrf6m2q";
|
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";
|
|
|
|
homepage = http://pyviz.org/;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.costrouc ];
|
|
|
|
};
|
|
|
|
}
|