How to install SENAITE health

I am currently trying to install senaite health and I experience some issues:

    #7 1.048 mr.developer: Queued 'senaite.panic' for checkout.                                                                                                                                                                  
    #7 2.008 mr.developer: Cloned 'senaite.panic' with git from 'https://github.com/senaite/senaite.panic.git'.                                                                                                                  
    #7 2.013 Develop: '/home/senaite/senaitelims/src/senaite.panic'                                                                                                                                                              
    #7 2.297 warning: no previously-included files matching '*' found under directory 'static'                                                                                                                                   
    #7 2.302 warning: no previously-included files matching '*.pyc' found under directory 'src/senaite/panic'
    #7 2.303 warning: no previously-included files matching '*.mo' found under directory 'src/senaite/panic'
    #7 4.436 Uninstalling precompiler.
    #7 4.438 Uninstalling zopepy.
    #7 4.441 Uninstalling instance.
    #7 4.450 Installing _mr.developer.
    #7 4.571 Generated script '/home/senaite/senaitelims/bin/develop'.
    #7 4.573 Installing instance.
    #7 5.172 Download error on http://download.zope.org/ppix/: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:727) -- Some packages may not be found!
    #7 5.277 Download error on http://download.zope.org/distribution/: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:727) -- Some packages may not be found!
    #7 5.768 Couldn't find index page for 'senaite.health' (maybe misspelled?)
    #7 5.795 Getting distribution for 'senaite.health'.
    #7 5.795 Couldn't find index page for 'senaite.health' (maybe misspelled?)
    #7 5.796 While:
    #7 5.796   Installing instance.
    #7 5.796   Getting distribution for 'senaite.health'.
    #7 5.796 Error: Couldn't find a distribution for 'senaite.health'.

Am I correct that the build.cfg file tries to get the files from https://pypi.org/simple/senaite-health/ ?

I am able to install it using a git repository as source for senaite.health and senaite.panic.

@ramonski Could you assist here?

Here is my functional buildout.cfg for anyone who might need it in the future:

[buildout]
extends =
  buildout-base.cfg

extensions = mr.developer
auto-checkout = 
    senaite.panic
    senaite.health

index = https://pypi.python.org/simple/

var-dir=/data
user=admin:admin

effective-user = senaite
buildout-user = senaite

eggs-directory=../buildout-cache/eggs
download-cache=../buildout-cache/downloads

parts +=
  zeo

eggs +=
    Plone
    Pillow
    senaite.lims
    senaite.panic
    senaite.health

[sources]
senaite.health = git https://github.com/senaite/senaite.health.git
senaite.panic = git https://github.com/senaite/senaite.panic.git

[client1]
recipe =

[zeo]
<= zeoserver_base
recipe = plone.recipe.zeoserver
zeo-address = 8080

[versions]
setuptools=
zc.buildout=
senaite.lims=1.3.4
soupsieve = 1.9.4
1 Like