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" "Apache-2.0"] 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" {>= "3.0"} 11 "angstrom" {>= "0.15.0"} 12 "base" {>= "v0.12" & < "v0.17.0"} 13 "cmdliner" {>= "1.1.0"} 14 "ppx_let" {>= "v0.12"} 15 "ppx_sexp_conv" {>= "v0.12"} 16 "ppx_string" {>= "v0.12"} 17 "re2" {>= "v0.12"} 18 "stdio" {>= "v0.12"} 19 "ocaml" {>= "4.08.0"} 20 "cmdliner" {= "1.1.0" & with-test} 21 "conf-python-3-dev" {>= "1" & with-test} 22 "core_kernel" {>= "v0.12" & with-test} 23 "ocamlformat" {>= "0.20.0" & < "0.21.0" & with-test} 24 "ppx_assert" {>= "v0.12" & with-test} 25 "ppx_inline_test" {>= "v0.12" & with-test} 26 "ppx_expect" {>= "v0.12" & with-test} 27 "pyml" {with-test} 28 "shexp" {>= "v0.14" & with-test} 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} 42 "@doc" {with-doc} 43 ] 44] 45available: arch != "x86_32" 46dev-repo: "git+https://github.com/mooreryan/ocaml_python_bindgen.git" 47url { 48 src: 49 "https://github.com/mooreryan/ocaml_python_bindgen/archive/0.3.0.tar.gz" 50 checksum: [ 51 "md5=d9e771921a4d253b6041d3a99408fa3e" 52 "sha512=9ec4aad1307505395154d1c64665be6392292ea9fba60580d3927869427c432502bf4bb4b9102f0fdb0f177bab2950ed1f2a91219ef2e577acc2a1971858cbed" 53 ] 54}