[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/13: gnu: Add python-pyls-black.
From: |
guix-commits |
Subject: |
03/13: gnu: Add python-pyls-black. |
Date: |
Sat, 8 May 2021 05:28:52 -0400 (EDT) |
lbraun pushed a commit to branch master
in repository guix.
commit e0def67669209e1bf948f79b1c46faff687baece
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Tue Apr 20 05:22:28 2021 +0000
gnu: Add python-pyls-black.
* gnu/packages/python-xyz.scm (python-pyls-black): New variable.
---
gnu/packages/python-xyz.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 24a4968..9381f50 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1131,6 +1131,39 @@ concepts.")
(define-public python2-h5py
(package-with-python2 python-h5py))
+(define-public python-pyls-black
+ (package
+ (name "python-pyls-black")
+ (version "0.4.6")
+ (source
+ (origin
+ ;; There are no tests in the PyPI tarball.
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rupert/pyls-black/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0cjf0mjn156qp0x6md6mncs31hdpzfim769c2lixaczhyzwywqnj"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:test-target "pytest"))
+ (propagated-inputs
+ `(("python-black" ,python-black)
+ ("python-language-server"
+ ,python-language-server)
+ ("python-toml" ,python-toml)))
+ (native-inputs
+ `(("python-flake8" ,python-flake8)
+ ("python-isort" ,python-isort)
+ ("python-mypy" ,python-mypy)
+ ("python-pytest" ,python-pytest)
+ ("python-pytest-runner" ,python-pytest-runner)))
+ (home-page "https://github.com/rupert/pyls-black")
+ (synopsis "Black plugin for the Python Language Server")
+ (description "Black plugin for the Python Language Server.")
+ (license license:expat)))
+
(define-public python-sh
(package
(name "python-sh")
- branch master updated (a9a67da -> dd05a93), guix-commits, 2021/05/08
- 01/13: gnu: Add python-textdistance., guix-commits, 2021/05/08
- 02/13: gnu: Add python-three-merge., guix-commits, 2021/05/08
- 03/13: gnu: Add python-pyls-black.,
guix-commits <=
- 04/13: gnu: Add python-tinycss., guix-commits, 2021/05/08
- 05/13: gnu: Add python-qstylizer., guix-commits, 2021/05/08
- 08/13: gnu: Add python-qtsass., guix-commits, 2021/05/08
- 07/13: gnu: Add python-pytest-qt., guix-commits, 2021/05/08
- 10/13: gnu: Add python-entrypoint2., guix-commits, 2021/05/08
- 11/13: gnu: Add python-pyvirtualdisplay., guix-commits, 2021/05/08
- 06/13: gnu: python-language-server: Enable tests., guix-commits, 2021/05/08
- 12/13: gnu: Add python-pytest-xvfb., guix-commits, 2021/05/08
- 13/13: gnu: python-language-server: Relax dependency versions., guix-commits, 2021/05/08
- 09/13: gnu: Add python-easyprocess., guix-commits, 2021/05/08