diff options
author | Christopher Baines <mail@cbaines.net> | 2018-03-24 10:55:38 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-31 09:22:53 +0000 |
commit | f08389f184cc8854c08658946e12d06785c6c1ab (patch) | |
tree | c162741c05e3720053b8e4be10f1ad82fa7fd72a | |
parent | a8e7477aa46e75c5ada4b62502a831b040812bca (diff) | |
download | gnu-guix-f08389f184cc8854c08658946e12d06785c6c1ab.tar gnu-guix-f08389f184cc8854c08658946e12d06785c6c1ab.tar.gz |
gnu: Add python-dennis.
-rw-r--r-- | gnu/packages/python.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 22f0e61920..9e627949d3 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15331,3 +15331,27 @@ class in a @acronym{DRY, Don't Repeat Yourself} way.") (description "An automated checker to make sure a C++ file follows Google's C++ style guide") (license #f))) + +(define-public python-dennis + (package + (name "python-dennis") + (version "0.9") + (source + (origin + (method url-fetch) + (uri (pypi-uri "dennis" version)) + (sha256 + (base32 + "0116hbz6dakwcafcij5hr553gwf7wmg9q1mwmrfwc0vxvbajv54c")))) + (build-system python-build-system) + (propagated-inputs + `(("python-click" ,python-click) + ("python-polib" ,python-polib))) + (native-inputs + `(("python-pytest" ,python-pytest))) + (home-page "http://github.com/willkg/dennis") + (synopsis + "Utilities for working with PO and POT files to ease development and improve localization quality") + (description + "Utilities for working with PO and POT files to ease development and improve localization quality") + (license #f))) |