-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.guix.scm
More file actions
40 lines (37 loc) · 1.11 KB
/
.guix.scm
File metadata and controls
40 lines (37 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
(use-modules
(guix packages)
(guix git-download)
(guix gexp)
((guix licenses) #:prefix license:)
(guix build-system python)
(gnu packages base)
(gnu packages emacs)
(gnu packages emacs-xyz)
(gnu packages python-build)
(gnu packages python-xyz)
(gnu packages version-control)
(guix-janelia packages python-guix)
(guix-janelia packages python-janelia))
(define %source-dir (dirname (current-filename)))
(define-public python-dev-package
(package
(name "python-dev-package")
(version "dev")
(source (local-file %source-dir
#:recursive? #t
#:select? (git-predicate %source-dir)))
(build-system python-build-system)
(native-inputs (list gnu-make
git
emacs
emacs-org
emacs-ox-gfm
python-wheel
python-twine
python-ipython))
(propagated-inputs (list python-modular-client))
(home-page "")
(synopsis "")
(description "")
(license license:gpl3+)))
python-dev-package