diff options
author | Christopher Baines <mail@cbaines.net> | 2018-03-24 10:57:01 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-31 09:22:54 +0000 |
commit | 7de4b1d777e5a65d7f9e2dbbb1c1d1eae14a2893 (patch) | |
tree | 03eef5267232a7d6241002067f5c007e75602820 /gnu | |
parent | 113e412b8b0faa123fa70a0185da7e8b20ce41b7 (diff) | |
download | gnu-guix-7de4b1d777e5a65d7f9e2dbbb1c1d1eae14a2893.tar gnu-guix-7de4b1d777e5a65d7f9e2dbbb1c1d1eae14a2893.tar.gz |
gnu: Add python-pyroma.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 5d21236d2f..25de69d868 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15505,3 +15505,24 @@ class in a @acronym{DRY, Don't Repeat Yourself} way.") (synopsis "Python docstring style checker") (description "Python docstring style checker") (license license:expat))) + +(define-public python-pyroma + (package + (name "python-pyroma") + (version "2.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pyroma" version)) + (sha256 + (base32 + "0ncnmrqs19jma2q5yz1sh0lcllvg8m96p78bxm50k6bzfc52h07x")))) + (build-system python-build-system) + (propagated-inputs + `(("python-docutils" ,python-docutils))) + (home-page "https://github.com/regebro/pyroma") + (synopsis + "Test your project's packaging friendliness") + (description + "Test your project's packaging friendliness") + (license license:expat))) |