-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathguix.scm.in
63 lines (57 loc) · 2.21 KB
/
guix.scm.in
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
;; Copyright (c) 2022, 2023, 2024 TU Delft <r.r.e.janssen@tudelft.nl>
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU Affero General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU Affero General Public License for more details.
;; You should have received a copy of the GNU Affero General Public
;; License along with this program. If not, see
;; <http://www.gnu.org/licenses/>.
(use-modules (guix packages)
((guix licenses) #:prefix license:)
(gnu packages python)
(gnu packages python-xyz)
(gnu packages python-web)
(gnu packages rdf)
(gnu packages version-control)
(gnu packages xml)
(gnu packages)
(guix build-system pyproject)
(guix download)
(guix packages))
(define djehuty
(package
(name "djehuty")
(version "@VERSION@")
(source (origin
(method url-fetch)
(uri (string-append
"file:///" (getcwd) "/" name "-" version ".tar.gz"))
(sha256
(base32
"0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"))))
(build-system pyproject-build-system)
(arguments `(#:tests? #f))
(native-inputs
(list python-setuptools
python-wheel))
(propagated-inputs
(list git
python-defusedxml
python-jinja2
python-rdflib
python-pillow
python-pygit2
python-requests
python-werkzeug))
(home-page "https://github.com/4TUResearchData/djehuty")
(synopsis "The 4TU.ResearchData and Nikhef data repository system.")
(description "This packge contains the implementation of the data
repository of 4TU.ResearchData and Nikhef.")
(license license:agpl3+)))
;; Evaluate to the above recipe, so that the development
;; environment has everything to start from scratch.
djehuty