doomemacs/modules/lang/python/packages.el

35 lines
942 B
EmacsLisp
Raw Normal View History

2017-02-19 18:57:16 -05:00
;; -*- no-byte-compile: t; -*-
;;; lang/python/packages.el
;; Major modes
(package! pip-requirements :pin "216cd1690f")
2019-10-15 09:09:24 +02:00
(when (featurep! +cython)
(package! cython-mode :pin "f6bf6aa9c7")
(when (featurep! :checkers syntax)
(package! flycheck-cython :pin "ecc4454d35")))
;; LSP
(when (featurep! +lsp)
(package! lsp-python-ms :pin "5d0c799099"))
;; Programming environment
(package! anaconda-mode :pin "10299bd9ff")
(when (featurep! :completion company)
(package! company-anaconda :pin "a31354ca8e"))
;; Environment management
(package! pipenv :pin "b730bb509e")
(package! pyvenv :pin "861998b6d1")
(when (featurep! +pyenv)
(package! pyenv-mode :pin "aec6f2aa28"))
(when (featurep! +conda)
(package! conda :pin "814439dffa"))
;; Testing frameworks
(package! nose :pin "f852829751")
(package! python-pytest :pin "09ad688df2")
2019-05-15 12:58:48 +02:00
;; Import managements
(package! pyimport :pin "a6f63cf7ed")
(package! py-isort :pin "e67306f459")