this repo has no description
1opam-version: "2.0" 2maintainer: "https://github.com/ocaml/opam-repository/issues" 3homepage: "https://pypi.org/project/PyYAML/" 4bug-reports: "https://github.com/ocaml/opam-repository/issues" 5authors: "PyYAML dev team" 6license: "MIT" 7build: [ 8 ["sh" "-c" "echo 'import yaml' > test.py"] 9 ["python3" "test.py"] 10] 11depends: [ 12 "conf-python-3" {build} 13] 14depexts: [ 15 ["python3-yaml"] {os-family = "debian"} 16 ["python3-yaml"] {os-family = "ubuntu"} 17 ["python3-pyyaml"] {os-distribution = "fedora"} 18 ["epel-release" "python36-PyYAML"] {os-distribution = "centos" & os-version < "8"} 19 ["python3-pyyaml"] {os-distribution = "centos" & os-version >= "8"} 20 ["python3-pyyaml"] {os-distribution = "ol" & os-version >= "8"} 21 ["python3-PyYAML"] {os-family = "suse" | os-family = "opensuse"} 22 ["python-yaml"] {os-family = "arch"} 23 ["py3-yaml"] {os-family = "alpine"} 24 ["dev-python/pyyaml"] {os-family = "gentoo"} 25 # Couldn't find the package on macos 26 ["py-pyyaml-include"] {os = "freebsd"} 27 ["py-yaml"] {os = "openbsd"} 28 ["py-yaml"] {os = "netbsd"} 29] 30x-ci-accept-failures: [ 31 "oraclelinux-7" # Does not have the package by default 32] 33synopsis: "Virtual package relying on PyYAML" 34description: 35 "This package can only install if the PyYAML python3 library is installed on the system." 36flags: conf