gnu: Add python-pathspec.

* gnu/packages/python-xyz.scm (python-pathspec): New variable.
This commit is contained in:
Ricardo Wurmus 2020-03-06 08:52:44 +01:00
parent 538c1a024a
commit c777ecb372
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3155,6 +3155,25 @@ (define-public python-language-server
feature-set for programming Python effectively.")
(license license:expat)))
(define-public python-pathspec
(package
(name "python-pathspec")
(version "0.7.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pathspec" version))
(sha256
(base32
"15lvs4awlg8xzl0l4gk9y53xx4yqmqvsv44pglv39m70y85afajn"))))
(build-system python-build-system)
(home-page "https://github.com/cpburnz/python-path-specification")
(synopsis "Utility library for gitignore style pattern matching of file paths")
(description
"This package provides a utility library for gitignore style pattern
matching of file paths.")
(license license:mpl2.0)))
(define-public python-black
(package
(name "python-black")