Having trouble importing hypernetx with PyCall

fwiw, using PythonCall.jl/CondaPkg.jl seems to work well:

pkg> activate .

(hypernetx) pkg> add CondaPkg

julia> using CondaPkg

(hypernetx) pkg> conda add matplotlib networkx pandas decorator

(hypernetx) pkg> conda pip_add hypernetx

(hypernetx) pkg> conda st
CondaPkg Status /home/mango/Projects/hypernetx/CondaPkg.toml
Packages
  decorator v5.1.1
  matplotlib v3.5.2
  networkx v2.8.3
  pandas v1.4.2
Pip packages
  hypernetx v1.2.4

(hypernetx) pkg> add PythonCall

julia> using PythonCall

julia> @py import hypernetx as hnx

julia> hnx
Python module: <module 'hypernetx' from '/home/mango/Projects/hypernetx/.CondaPkg/env/lib/python3.10/site-packages/hypernetx/__init__.py'>

Just a quick note that I included the decorators package because it seemed to be required for the installation to work, same when trying in a plain python shell

Similarly doing using SimpleHypergraphs gives me the following warning
ā”Œ Warning: The plotting functionality of HyperNetX will not work! │ Conda Python HyperNetX not found.

I’m not able to reproduce this on linux, so this might be a windows specific issue?