this repo has no description
1opam-version: "2.0" 2maintainer: [ 3 "Akinori ABE <aabe.65535@gmail.com>" 4] 5authors: [ 6 "Akinori ABE" 7] 8license: "MIT" 9homepage: "https://akabe.github.io/ocaml-jupyter/" 10bug-reports: "https://github.com/akabe/ocaml-jupyter/issues" 11dev-repo: "git+https://github.com/akabe/ocaml-jupyter.git" 12 13build: [ 14 [ "dune" "subst" ] {dev} 15 [ "dune" "build" "-p" name "-j" jobs ] 16] 17depends: [ 18 "ocaml" {>= "4.04.0" & < "4.09.0"} 19 "base-threads" 20 "base-unix" 21 "uuidm" {>= "0.9.6"} 22 "base64" {>= "3.2.0"} 23 "lwt" {>= "4.0.0"} 24 "lwt_ppx" {>= "1.0.0"} 25 "logs" {>= "0.6.0"} 26 "stdint" {>= "0.4.2"} 27 "zmq" {>= "5.0.0"} 28 "zmq-lwt" {>= "5.0.0"} 29 "yojson" {>= "1.3.3"} 30 "ppx_deriving_yojson" {>= "3.0"} 31 "cryptokit" {>= "1.12"} 32 "dune" {>= "1.0.0"} 33] 34depopts: [ 35 "merlin" 36] 37conflicts: [ 38 "merlin" {< "3.0.0"} 39] 40 41post-messages: [ 42 "Please run for registration of ocaml-jupyter kernel:" 43 "" 44 "$ jupyter kernelspec install --name ocaml-jupyter \\" 45 " %{share}%/jupyter" 46 {success} 47] 48 49synopsis: "An OCaml kernel for Jupyter notebook" 50description: 51 "OCaml Jupyter provides an OCaml REPL on Jupyter (a great interface with markdown/HTML documentation, LaTeX formula by MathJax, and image embedding). This is useful for data analysis in OCaml." 52url { 53 src: 54 "https://github.com/akabe/ocaml-jupyter/releases/download/v2.6.0/jupyter-v2.6.0.tbz" 55 checksum: [ 56 "sha256=ea1520a2680f6078ad6d79603bdbcbdeb073b22f32d3e238c56dbad3ab5d0d02" 57 "md5=8995fcf19514a321ce2e4ba25d436ccf" 58 ] 59}