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