this repo has no description
1opam-version: "2.0" 2synopsis: "Generate pyml bindings from OCaml value specifications" 3maintainer: "Ryan M. Moore" 4authors: "Ryan M. Moore" 5license: "MIT" 6homepage: "https://github.com/mooreryan/ocaml_python_bindgen" 7doc: "https://mooreryan.github.io/ocaml_python_bindgen/" 8bug-reports: "https://github.com/mooreryan/ocaml_python_bindgen/issues" 9depends: [ 10 "dune" {>= "2.8"} 11 "dune" {with-test & < "3.0"} 12 "angstrom" {>= "0.15.0"} 13 "base" {>= "v0.12" & < "v0.17.0"} 14 "cmdliner" {>= "1.0"} 15 "cmdliner" {with-test & < "1.1.0"} 16 "ppx_let" {>= "v0.12"} 17 "ppx_sexp_conv" {>= "v0.12"} 18 "ppx_string" {>= "v0.12"} 19 "re2" {>= "v0.12"} 20 "stdio" {>= "v0.12"} 21 "ocaml" {>= "4.08.0"} 22 "conf-python-3-dev" {>= "1" & with-test} 23 "core_kernel" {>= "v0.12" & with-test} 24 "ocamlformat" {>= "0.19.0" & < "0.20.0" & with-test} 25 "ppx_inline_test" {>= "v0.12" & with-test} 26 "ppx_expect" {>= "v0.12" & with-test} 27 "pyml" {with-test} 28 "bisect_ppx" {dev} 29 "odoc" {with-doc} 30] 31build: [ 32 ["dune" "subst"] {dev} 33 [ 34 "dune" 35 "build" 36 "-p" 37 name 38 "-j" 39 jobs 40 "@install" 41 "@runtest" {with-test & arch != "x86_32"} 42 "@doc" {with-doc} 43 ] 44] 45dev-repo: "git+https://github.com/mooreryan/ocaml_python_bindgen.git" 46url { 47 src: 48 "https://github.com/mooreryan/ocaml_python_bindgen/archive/0.1.2.tar.gz" 49 checksum: [ 50 "md5=133b36ac67fba4e34aaffc68857a5a6f" 51 "sha512=05d6eef8b446513245333bd0a8555575802a7e2ba6d6d09fcf09258abd057657ecdddf28fc9cbd5ed83833ba4f169eca40d886f4d7e213460ec6146999c02c23" 52 ] 53}