-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathguix.scm
More file actions
29 lines (26 loc) · 761 Bytes
/
guix.scm
File metadata and controls
29 lines (26 loc) · 761 Bytes
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
(use-modules
(guix packages)
(guix git-download)
(guix gexp)
((guix licenses) #:prefix license:)
(guix build-system python)
(gnu packages python-build)
(gnu packages python-xyz))
(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
`(("python-wheel" ,python-wheel)
("python-twine" ,python-twine)
("python-ipython" ,python-ipython)))
(home-page "")
(synopsis "")
(description "")
(license license:gpl3+)))
python-dev-package