diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-14 00:22:03 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-14 01:50:34 +0100 |
commit | c8ca9eb8f369c869b37a6c059713b0c49eaee0a5 (patch) | |
tree | 03071427c56fe0e8caed9c331bd8bb974db4cf31 | |
parent | 970a3026e903dbb0e712da624b7dac6c870194c7 (diff) |
gnu: python-pycryptodome: Note public-domain legacy.
* gnu/packages/python-pycryptodome.scm (python-pycryptodome)[license]:
Add public-domain.
-rw-r--r-- | gnu/packages/python-crypto.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index 8911667f22..97b55b0021 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -1035,7 +1035,8 @@ in userspace) This package provides drop-in compatibility with PyCrypto. It is one of two PyCryptodome variants, the other being python-pycryptodomex.") - (license license:bsd-2))) + (license (list license:bsd-2 + license:public-domain)))) ; code inherited from PyCrypto (define-public python2-pycryptodome (package-with-python2 python-pycryptodome)) |