-
Notifications
You must be signed in to change notification settings - Fork 3
/
guix-manifest.scm
256 lines (245 loc) · 8.62 KB
/
guix-manifest.scm
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
(use-modules
(guix packages)
(gnu packages base)
(gnu packages autotools)
(gnu packages check)
(gnu packages docker)
(gnu packages jupyter)
(gnu packages openstack)
(gnu packages rust)
(gnu packages pkg-config)
(gnu packages python)
(gnu packages python-build)
(gnu packages python-check)
(gnu packages python-compression)
(gnu packages python-xyz)
(guix download)
(guix build-system python)
((guix licenses) #:prefix license:))
(define-public python-pygls
(package
(name "python-pygls")
(version "0.12.1")
(source (origin
(method url-fetch)
(uri (pypi-uri "pygls" version))
(sha256
(base32
"040nq6a2a0ddv9lq7d6m84a1qixbnv5w5pj7s2p28xkfzlis579v"))))
(build-system python-build-system)
(arguments
`(#:tests? #f
#:phases
(modify-phases %standard-phases
(delete 'sanity-check))))
(propagated-inputs (list python-cython python-pydantic python-typeguard))
(native-inputs (list python-bandit
python-flake8
python-setuptools-scm
python-wheel
python-mock
python-mypy
python-pytest
python-pytest-asyncio))
(home-page "https://github.com/openlawlibrary/pygls/tree/master/")
(synopsis
"a pythonic generic language server (pronounced like \"pie glass\").")
(description
"a pythonic generic language server (pronounced like \"pie glass\").")
(license license:asl2.0)))
(define-public python-docstring-to-markdown
(package
(name "python-docstring-to-markdown")
(version "0.10")
(source (origin
(method url-fetch)
(uri (pypi-uri "docstring-to-markdown" version))
(sha256
(base32
"1xlb2qf2ph6g8xahw7794qz8rhvsxxblpqnrlbzdwwkmgc65pxqj"))))
(build-system python-build-system)
(home-page "")
(synopsis "On the fly conversion of Python docstrings to markdown")
(description "On the fly conversion of Python docstrings to markdown")
(license #f)))
(define-public python-jedi-language-server
(package
(name "python-jedi-language-server")
(version "0.37.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "jedi-language-server" version))
(sha256
(base32
"006hxy54i1ywmz8hnybb6bfspakq3z2wzvg8y6n70il4apyjkyrg"))))
(build-system python-build-system)
(arguments
`(#:tests? #f
#:phases
(modify-phases %standard-phases
(delete 'sanity-check))))
(propagated-inputs (list python-docstring-to-markdown
python-importlib-metadata python-jedi
python-pydantic python-pygls))
(home-page "https://github.com/pappasam/jedi-language-server")
(synopsis "A language server for Jedi!")
(description "This package provides a language server for Jedi!")
(license license:expat)))
(define-public python-pylsp-mypy
(package
(name "python-pylsp-mypy")
(version "0.6.3")
(source (origin
(method url-fetch)
(uri (pypi-uri "pylsp-mypy" version))
(sha256
(base32
"1gf865dj9na7jyp1148k27jafwb6bg0rdg9kyv4x4ag8qdlgv9h6"))))
(build-system python-build-system)
(propagated-inputs (list python-lsp-server python-mypy python-toml))
(native-inputs (list python-coverage python-pytest python-pytest-cov
python-tox))
(home-page "https://github.com/python-lsp/pylsp-mypy")
(synopsis "Mypy linter for the Python LSP Server")
(description "Mypy linter for the Python LSP Server")
(license #f)))
(define-public python-pep517
(package
(name "python-pep517")
(version "0.13.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "pep517" version))
(sha256
(base32
"0nczh9pfcin7rlgzgmfw3snypwscp3a2cdr0v6ny2aqpbiy94sdf"))))
(build-system python-build-system)
(propagated-inputs (list python-importlib-metadata python-tomli
python-zipp))
(home-page "https://github.com/pypa/pep517")
(synopsis "Wrappers to build Python packages using PEP 517 hooks")
(description "Wrappers to build Python packages using PEP 517 hooks")
(license #f)))
(define-public python-build
(package
(name "python-build")
(version "0.9.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "build" version))
(sha256
(base32
"0g5w28ban6k9qywqwdqiqms3crg75rsvfphl4f4qkg8wi57741qs"))))
(build-system python-build-system)
(propagated-inputs (list python-colorama python-importlib-metadata
python-packaging python-pep517 python-tomli))
(native-inputs (list python-filelock
python-pytest
python-pytest-cov
python-pytest-mock
python-pytest-rerunfailures
python-pytest-xdist
python-setuptools
python-toml
python-wheel))
(home-page "")
(synopsis "A simple, correct PEP 517 build frontend")
(description
"This package provides a simple, correct PEP 517 build frontend")
(license license:expat)))
(define-public python-pylsp-rope
(package
(name "python-pylsp-rope")
(version "0.1.10")
(source (origin
(method url-fetch)
(uri (pypi-uri "pylsp-rope" version))
(sha256
(base32
"1mydh5fp2yz5rayrp3q2ff4y39881wla0sx09cx66bwjbzqh8qcy"))))
(build-system python-build-system)
(propagated-inputs (list python-lsp-server python-rope
python-typing-extensions))
(native-inputs (list python-build python-pytest python-twine))
(home-page "https://github.com/python-rope/pylsp-rope")
(synopsis
"Extended refactoring capabilities for Python LSP Server using Rope.")
(description
"Extended refactoring capabilities for Python LSP Server using Rope.")
(license license:expat)))
(define-public python-types-setuptools
(package
(name "python-types-setuptools")
(version "65.5.0.3")
(source (origin
(method url-fetch)
(uri (pypi-uri "types-setuptools" version))
(sha256
(base32
"1z59bap6vchjcb5kcsxzgdvdlp1aal3323awn9lxr8pjymqr2xhp"))))
(build-system python-build-system)
(home-page "https://github.com/python/typeshed")
(synopsis "Typing stubs for setuptools")
(description "Typing stubs for setuptools")
(license #f)))
(define-public python-types-pkg-resources
(package
(name "python-types-pkg-resources")
(version "0.1.3")
(source (origin
(method url-fetch)
(uri (pypi-uri "types-pkg-resources" version))
(sha256
(base32
"1blxmgxrcc2g5g6vqcrpknzzc9m7b4rmv7fr5xb478xy7n6rnjl3"))))
(build-system python-build-system)
(home-page "https://github.com/python/typeshed")
(synopsis "Typing stubs for pkg_resources")
(description "Typing stubs for pkg_resources")
(license #f)))
(define-public python-lsp-black
(package
(name "python-lsp-black")
(version "1.2.1")
(source (origin
(method url-fetch)
(uri (pypi-uri "python-lsp-black" version))
(sha256
(base32
"1sfckmajwgil4sqfmkgxmrp7rkz1ybwf5br6rj16msbplfrfmsnp"))))
(build-system python-build-system)
(propagated-inputs (list python-black python-lsp-server python-toml))
(native-inputs (list python-flake8
python-isort
python-mypy
python-pre-commit
python-pytest
python-types-pkg-resoures
python-types-setuptools
python-types-toml))
(home-page "https://github.com/python-lsp/python-lsp-black")
(synopsis "Black plugin for the Python LSP Server")
(description "Black plugin for the Python LSP Server")
(license #f)))
(packages->manifest
(list
docker-compose
gnu-make
jupyter
rust
pkg-config
python
python-black
python-coverage
python-flake8
python-jedi
python-ipython
python-lsp-server
python-pydantic
python-pylsp-mypy
python-pyflakes
python-pytest
python-rope
python-mccabe
python-virtualenv
python-yapf))