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"
7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/pythonlib/index.html"
8license: "MIT"
9build: [
10 ["dune" "build" "-p" name "-j" jobs]
11]
12depends: [
13 "ocaml" {>= "4.07.0"}
14 "base" {>= "v0.13" & < "v0.14"}
15 "ppx_expect" {>= "v0.13" & < "v0.14"}
16 "ppx_python" {>= "v0.13" & < "v0.14"}
17 "stdio" {>= "v0.13" & < "v0.14"}
18 "typerep" {>= "v0.13" & < "v0.14"}
19 "dune" {>= "1.5.1"}
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:
28 "https://ocaml.janestreet.com/ocaml-core/v0.13/files/pythonlib-v0.13.0.tar.gz"
29 checksum: [
30 "sha256=3d4508cae33e5a4b9148dc5ec04d957eeb01f32e8a4884eefcb6eb8dabd15d26"
31 "md5=be1f1a4a527b2ce28c8c1308183848cd"
32 ]
33}