From f08389f184cc8854c08658946e12d06785c6c1ab Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sat, 24 Mar 2018 10:55:38 +0000 Subject: gnu: Add python-dennis. --- gnu/packages/python.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) 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))) -- cgit v1.2.3