summaryrefslogtreecommitdiff
path: root/manifest.scm
blob: d001fcb6644cf4d6f52d78a738b61fe4512bf9fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;;; defines an environment for guix
(use-modules (gnu packages python)
             (gnu packages python-xyz)
             (gnu packages python-web)
	     (gnu packages python-science)
             (gnu packages jupyter))

(packages->manifest
 (list
  ;; env
  python
  jupyter
  python-plotly

  ;; async libs
  python-aiofiles
  python-aiohttp
  python-httpx
  python-quart
  ))