1{ lib, fetchPypi, buildPythonPackage
2}:
3
4buildPythonPackage rec {
5 pname = "tensorboard_plugin_wit";
6 version = "1.7.0";
7 format = "wheel";
8
9 src = fetchPypi {
10 inherit pname version;
11 format = "wheel";
12 python = "py3";
13 sha256 = "0nv855qm2fav70lndsrv810pqgg41sbmd70fk86wk18ih825yxzf";
14 };
15
16 meta = with lib; {
17 description = "What-If Tool TensorBoard plugin.";
18 homepage = "http://tensorflow.org";
19 license = licenses.asl20;
20 maintainers = with maintainers; [ ndl ];
21 };
22}