this repo has no description
1opam-version: "2.0" 2bug-reports: "https://github.com/LaurentMazare/ocaml-matplotlib/issues" 3homepage: "https://github.com/LaurentMazare/ocaml-matplotlib" 4dev-repo: "git+https://github.com/LaurentMazare/ocaml-matplotlib.git" 5maintainer: "Laurent Mazare <lmazare@gmail.com>" 6authors: [ "Laurent Mazare" ] 7license: "MIT" 8 9build: [["dune" "build" "-j" jobs "-p" name]] 10 11depends: [ 12 "base" {>= "v0.11.0" & < "v0.17"} 13 "stdio" 14 "pyml" {>= "20180530"} 15 "dune" {>= "1.4"} 16 "ocaml" {>= "4.06"} 17] 18 19synopsis: "Plotting using Matplotlib through python" 20description: """ 21This provides bindings to Matplotlib for various types of plots using pyml 22to interface with python. 23""" 24 25url { 26 src: "https://github.com/LaurentMazare/ocaml-matplotlib/archive/0.2.tar.gz" 27 checksum: [ 28 "md5=a08efaf79f9d8d4284d35ada560aae7f" 29 "sha512=e345241f891fd3fd3e61b7161ba9df9f9e174f20781021e662481b01de4fcfef34ce0e85e63144088ae11417c878816a235e4fd7478559b60f0d5f18a5911253" 30 ] 31}