guix-commits
[Top][All Lists]
Advanced

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

04/05: gnu: python-pycryptodomex: Inherit from python-pycryptodome.


From: guix-commits
Subject: 04/05: gnu: python-pycryptodomex: Inherit from python-pycryptodome.
Date: Sat, 14 Nov 2020 18:38:51 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit cbfa23c74ec874be7f55ee7758009d477d6c6005
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Nov 15 00:28:36 2020 +0100

    gnu: python-pycryptodomex: Inherit from python-pycryptodome.
    
    * gnu/packages/python-crypto.scm (python-pycryptodomex): Inherit from
    python-pycryptodome.
    [build-system, home-page, synopsis, license]: Remove redundant fields.
---
 gnu/packages/python-crypto.scm | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 60a9776..ce183bd 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -1042,18 +1042,15 @@ PyCryptodome variants, the other being 
python-pycryptodomex.")
   (package-with-python2 python-pycryptodome))
 
 (define-public python-pycryptodomex
-  (package
+  (package (inherit python-pycryptodome)
     (name "python-pycryptodomex")
-    (version "3.9.9")
+    (version (package-version python-pycryptodome))
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "pycryptodomex" version))
        (sha256
         (base32 "0lbx4qk3xmwqiidhmkj8qa7bh2lf8bwzg0xjpsh2w5zqjrc7qnvv"))))
-    (build-system python-build-system)
-    (home-page "https://www.pycryptodome.org";)
-    (synopsis "Low-level cryptographic Python library")
     (description
      "PyCryptodome is a self-contained Python package of low-level
 cryptographic primitives.  It's not a wrapper to a separate C library like
@@ -1088,9 +1085,7 @@ in userspace)
 @end itemize
 
 PyCryptodomex is the stand-alone version of PyCryptodome that no longer
-provides drop-in compatibility with PyCrypto.")
-    (license (list license:bsd-2
-                   license:public-domain)))) ; code inherited from PyCrypto
+provides drop-in compatibility with PyCrypto.")))
 
 (define-public python-m2crypto
   (package



reply via email to

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