diff options
author | Ben Sturmfels <ben@sturm.com.au> | 2021-03-30 13:37:41 +1100 |
---|---|---|
committer | Ben Sturmfels <ben@sturm.com.au> | 2021-03-30 13:37:41 +1100 |
commit | 4a830cb4f370ac60f5a2f773b90a4bf86d7ec4c5 (patch) | |
tree | aaec7165baf9ed0d3fbdf4baaeb92aacbb49b2dd | |
parent | 43b7d8840041997d6afbb850f5435a78070df47a (diff) | |
download | mediagoblin-4a830cb4f370ac60f5a2f773b90a4bf86d7ec4c5.tar.lz mediagoblin-4a830cb4f370ac60f5a2f773b90a4bf86d7ec4c5.tar.xz mediagoblin-4a830cb4f370ac60f5a2f773b90a4bf86d7ec4c5.zip |
Enable OpenID and LDAP tests under Guix.
-rw-r--r-- | guix-env.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/guix-env.scm b/guix-env.scm index c81f3a09..56eb6fd1 100644 --- a/guix-env.scm +++ b/guix-env.scm @@ -95,7 +95,7 @@ ;;; for certain things to run, so we have a virtualenv with nothing ;;; in it but this project itself. ;;; -;;; Migrate the database and add a user: +;;; For first time setup only, migrate the database and add a user: ;;; ;;; bin/gmg --conf_file mediagoblin.ini dbupdate ;;; bin/gmg --conf_file mediagoblin.ini adduser --username admin --password a --email admin@example.com @@ -137,6 +137,7 @@ (gnu packages check) (gnu packages databases) (gnu packages libffi) ; cffi for embedded python-soundfile + (gnu packages openldap) (gnu packages pdf) (gnu packages pkg-config) ; embedded libsndfile (gnu packages python) @@ -314,6 +315,8 @@ data as NumPy arrays.") ("python-email-validator" ,python-email-validator) ("python-feedgenerator" ,python-feedgenerator) ("python-soundfile" ,python-soundfile) + ("python-ldap" ,python-ldap) + ("python-openid" ,python-openid) )) (home-page "http://mediagoblin.org/") (synopsis "Web application for media publishing") |