1) Install conda into a profile:
guix package --install=conda --profile=$HOME/guix_profiles/conda
2) Activate the profile:
source $HOME/guix_profiles/conda/etc/profile
3) Create an environment with conda and install biopython
conda create --name test-env biopython
4) Try to activate the environment (here's where it fails)
source activate test-env
