summaryrefslogtreecommitdiff
path: root/manifest.scm
diff options
context:
space:
mode:
Diffstat (limited to 'manifest.scm')
-rw-r--r--manifest.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/manifest.scm b/manifest.scm
new file mode 100644
index 0000000..d001fcb
--- /dev/null
+++ b/manifest.scm
@@ -0,0 +1,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
+ ))