this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/pythonlib" 5bug-reports: "https://github.com/janestreet/pythonlib/issues" 6dev-repo: "git+https://github.com/janestreet/pythonlib.git" 7license: "MIT" 8build: [ 9 ["dune" "build" "-p" name "-j" jobs] 10] 11depends: [ 12 "ocaml" {>= "4.07.0"} 13 "base" {>= "v0.12" & < "v0.13"} 14 "ppx_jane" {>= "v0.12" & < "v0.13"} 15 "ppx_python" {>= "v0.12" & < "v0.13"} 16 "stdio" {>= "v0.12" & < "v0.13"} 17 "typerep" {>= "v0.12" & < "v0.13"} 18 "dune" {>= "1.5.1"} 19 "ppxlib" {>= "0.7.0" & < "0.9.0"} 20 "pyml" {>= "20190626"} 21] 22synopsis: "A library to help writing wrappers around ocaml code for python" 23description: " 24This library helps exposing ocaml functions to python. The python runtime interaction is handled by pyml. 25" 26url { 27 src: "https://github.com/janestreet/pythonlib/archive/v0.12.0.tar.gz" 28 checksum: [ 29 "sha256=58e97442c809ea30505d6b64be70c265f22a7066b8fd0bcec04c620f3afe69f1" 30 "md5=0cc39277498c92b81dbd4156a06cd185" 31 ] 32}