me
/
guix
Archived
1
0
Fork 0

gnu: Add python-requests-kerberos.

* gnu/packages/python-web.scm (python-requests-kerberos): New variable.
Hartmut Goebel 2022-07-20 09:53:45 +02:00
parent b4714ef05e
commit ee41bd8391
No known key found for this signature in database
GPG Key ID: 634A8DFFD3F631DF
1 changed files with 20 additions and 1 deletions

View File

@ -13,7 +13,7 @@
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2015 Cyril Roelandt <tipecaml@gmail.com>
;;; Copyright © 2015, 2016, 2017, 2019 Leo Famulari <leo@famulari.name>
;;; Copyright © 2016, 2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
;;; Copyright © 2016, 2019, 2022 Hartmut Goebel <h.goebel@crazy-compilers.com>
;;; Copyright © 20162021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2015, 2017 Ben Woodcroft <donttrustben@gmail.com>
;;; Copyright © 2015, 2016 Christine Lemmer-Webber <cwebber@dustycloud.org>
@ -2805,6 +2805,25 @@ APIs.")
than Pythons urllib2 library.")
(license license:asl2.0)))
(define-public python-requests-kerberos
(package
(name "python-requests-kerberos")
(version "0.14.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "requests-kerberos" version))
(sha256
(base32
"1lbgjs779cjxhz07lfl9dbyp3qfh8a3ir2393042wfg518jd3afd"))))
(build-system python-build-system)
(propagated-inputs (list python-cryptography python-pyspnego
python-requests))
(home-page "https://github.com/requests/requests-kerberos")
(synopsis "Kerberos authentication handler for python-requests")
(description "This package provides a Kerberos authentication handler for
python-requests.")
(license license:isc)))
(define-public python-requests-unixsocket
(package
(name "python-requests-unixsocket")