mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: Add python-potr.
* gnu/packages/python-crypto.scm (python-potr): New variable.
This commit is contained in:
parent
c519a5b5b6
commit
c6e8d17b02
1 changed files with 24 additions and 0 deletions
|
@ -64,6 +64,30 @@ (define-module (gnu packages python-crypto)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (srfi srfi-1))
|
#:use-module (srfi srfi-1))
|
||||||
|
|
||||||
|
(define-public python-potr
|
||||||
|
(package
|
||||||
|
(name "python-potr")
|
||||||
|
(version "1.0.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri
|
||||||
|
(git-reference
|
||||||
|
(url "https://github.com/python-otr/pure-python-otr.git")
|
||||||
|
(commit version)))
|
||||||
|
(file-name
|
||||||
|
(git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1hzw6h01fm216nmipyylgz0zybd80w1xsk12m7djycnhqrnrvvv1"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-pycrypto" ,python-pycrypto)))
|
||||||
|
(synopsis "Python OTR Implementation")
|
||||||
|
(description "Python OTR is an Off-The-Record Protocol Implementation in
|
||||||
|
Python. It does not bind to libotr.")
|
||||||
|
(home-page "https://github.com/python-otr/pure-python-otr")
|
||||||
|
(license license:lgpl3+)))
|
||||||
|
|
||||||
(define-public python-base58
|
(define-public python-base58
|
||||||
(package
|
(package
|
||||||
(name "python-base58")
|
(name "python-base58")
|
||||||
|
|
Loading…
Reference in a new issue