this repo has no description
1opam-version: "2.0"
2maintainer: "Zach Shipko <zachshipko@gmail.com>"
3authors: ["Zach Shipko <zachshipko@gmail.com>"]
4homepage: "https://github.com/zshipko/ocaml-py"
5doc: "https://github.com/zshipko/ocaml-py/doc"
6license: "ISC"
7dev-repo: "git+https://github.com/zshipko/ocaml-py.git"
8bug-reports: "https://github.com/zshipko/ocaml-py/issues"
9tags: ["python"]
10depends: [
11 "ocaml" {>= "4.03.0"}
12 "ocamlfind" {build}
13 "ocamlbuild" {build}
14 "topkg" {build & >= "0.9.1"}
15 "ctypes" {>= "0.13.0" & < "0.18.0"}
16 "ctypes-foreign" {>= "0.4.0"}
17]
18depexts: [
19 ["python3-dev"] {os-family = "debian"}
20 ["python3-devel"] {os-distribution = "fedora"}
21 ["python3-dev"] {os-distribution = "alpine"}
22]
23build: [
24 ["ocaml" "pkg/pkg.ml" "build"]
25 ["ocaml" "pkg/pkg.ml" "build" "--tests" "true"] {with-test}
26 ["ocaml" "pkg/pkg.ml" "test"] {with-test}
27]
28post-messages: [
29 "Py requires Python 3.5 or greater"
30]
31synopsis: "Python 3.5+ bindings for OCaml"
32description:
33 "Py provides a nice interface for interacting with Python libraries in OCaml"
34url {
35 src: "https://github.com/zshipko/ocaml-py/archive/v1.0.tar.gz"
36 checksum: [
37 "sha256=15063002d47dca99878b0cd8f812f6a05f038126ccd0db67539cc3b8ca579ab2"
38 "md5=e924b70d6cfcec304a7416d5bee0500d"
39 ]
40}