guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/12: gnu: Add python-check-manifest.


From: guix-commits
Subject: 02/12: gnu: Add python-check-manifest.
Date: Sun, 26 Jan 2020 12:50:35 -0500 (EST)

roptat pushed a commit to branch master
in repository guix.

commit 7261bdca4edf800a2e329369fefd3f2d43f0bf03
Author: Julien Lepiller <address@hidden>
AuthorDate: Sun Jan 12 23:30:11 2020 +0100

    gnu: Add python-check-manifest.
    
    * gnu/packages/python-xyz.scm (python-check-manifest): New variable.
---
 gnu/packages/python-xyz.scm | 24 +++++++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 231c380..f8d107d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -31,7 +31,7 @@
 ;;; Copyright © 2016 Dylan Jeffers <sapientech@address@hidden>
 ;;; Copyright © 2016, 2017, 2019 Alex Vong <address@hidden>
 ;;; Copyright © 2016, 2017, 2018 Arun Isaac <address@hidden>
-;;; Copyright © 2016, 2017, 2018 Julien Lepiller <address@hidden>
+;;; Copyright © 2016, 2017, 2018, 2020 Julien Lepiller <address@hidden>
 ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice 
<address@hidden>
 ;;; Copyright © 2016, 2017 Thomas Danckaert <address@hidden>
 ;;; Copyright © 2017 Carlo Zancanaro <address@hidden>
@@ -17312,3 +17312,25 @@ tests.")
 GSSAPI C libraries.  While it focuses on the Kerberos mechanism, it should
 also be useable with other GSSAPI mechanisms.")
     (license license:isc)))
+
+(define-public python-check-manifest
+  (package
+    (name "python-check-manifest")
+    (version "0.37")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "check-manifest" version))
+        (sha256
+         (base32
+          "0lk45ifdv2cpkl6ayfyix7jwmnxa1rha7xvb0ih5999k115wzqs4"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-mock" ,python-mock)
+       ("git" ,git)))
+    (home-page "https://github.com/mgedmin/check-manifest";)
+    (synopsis "Check MANIFEST.in in a Python source package for completeness")
+    (description "Python package can include a MANIFEST.in file to help with
+sending package files to the Python Package Index.  This package checks that
+file to ensure it completely and accurately describes your project.")
+    (license license:expat)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]