guix
|
Last change
on this file since df0449c was 577c8c6, checked in by Enrico Schwass <ennoausberlin@…>, 16 months ago |
|
add guix.scm for easier development
|
-
Property mode
set to
100644
|
|
File size:
491 bytes
|
| Rev | Line | |
|---|
| [577c8c6] | 1 | (use-modules
|
|---|
| 2 | (guix)
|
|---|
| 3 | (guix build-system pyproject)
|
|---|
| 4 | ((guix licenses) #:prefix license:)
|
|---|
| 5 | (gnu packages python-xyz)
|
|---|
| 6 | )
|
|---|
| 7 |
|
|---|
| 8 | (setenv "PYTHONPATH" (string-append (getenv "GUIX_PYTHONPATH") ":" (getcwd)))
|
|---|
| 9 |
|
|---|
| 10 | (package
|
|---|
| 11 | (name "flowtimer")
|
|---|
| 12 | (version "1.0.1")
|
|---|
| 13 | (source (local-file "." #:recursive? #t))
|
|---|
| 14 | (build-system pyproject-build-system)
|
|---|
| 15 | (propagated-inputs
|
|---|
| 16 | (list python-pillow))
|
|---|
| 17 | (synopsis "tbd")
|
|---|
| 18 | (description "tbd")
|
|---|
| 19 | (home-page "https://kokyou.org:8080")
|
|---|
| 20 | (license license:expat))
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.