Index: guix.scm
===================================================================
--- guix.scm	(revision 577c8c635298483647c6e8fde29415ad7ed789c4)
+++ guix.scm	(revision 577c8c635298483647c6e8fde29415ad7ed789c4)
@@ -0,0 +1,20 @@
+(use-modules
+  (guix)
+  (guix build-system pyproject)
+  ((guix licenses) #:prefix license:)
+  (gnu packages python-xyz)
+)
+
+(setenv "PYTHONPATH" (string-append (getenv "GUIX_PYTHONPATH") ":" (getcwd)))
+
+(package
+  (name "flowtimer")
+  (version "1.0.1")
+  (source (local-file "." #:recursive? #t))
+  (build-system pyproject-build-system)
+  (propagated-inputs
+    (list python-pillow))
+  (synopsis "tbd")
+  (description "tbd")
+  (home-page "https://kokyou.org:8080")
+  (license license:expat))
