diff options
author | Christopher Baines <mail@cbaines.net> | 2018-03-24 10:58:20 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-31 09:22:54 +0000 |
commit | 8715cd27acbf520ed6c68771d39257dc67adacaf (patch) | |
tree | a0ae0dffcd176530b9f643aed9ac387b255c245e | |
parent | cc67b9e902ed52cd772f98125a09b71cbc5a0c8a (diff) | |
download | gnu-guix-8715cd27acbf520ed6c68771d39257dc67adacaf.tar gnu-guix-8715cd27acbf520ed6c68771d39257dc67adacaf.tar.gz |
gnu: Add python-vim-vint.
-rw-r--r-- | gnu/packages/python.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 78c5c5cb5a..2755dc2912 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15661,3 +15661,26 @@ class in a @acronym{DRY, Don't Repeat Yourself} way.") (description "A library to produce ansi color output and colored highlighting and diffing") (license #f))) + +(define-public python-vim-vint + (package + (name "python-vim-vint") + (version "0.3.18") + (source + (origin + (method url-fetch) + (uri (pypi-uri "vim-vint" version)) + (sha256 + (base32 + "0w038bgic7rdim60rhwrx3gwj33lgmhad8shpvcl2iy6fy8rpp7y")))) + (build-system python-build-system) + (arguments + '(#:tests? #f)) + (propagated-inputs + `(("python-ansicolor" ,python-ansicolor) + ("python-chardet" ,python-chardet) + ("python-pyyaml" ,python-pyyaml))) + (home-page "https://github.com/Kuniwak/vint") + (synopsis "Lint tool for Vim script Language") + (description "Lint tool for Vim script Language") + (license #f))) |