mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add python-requests-kerberos.
* gnu/packages/python-web.scm (python-requests-kerberos): New variable.
This commit is contained in:
parent
b4714ef05e
commit
ee41bd8391
1 changed files with 20 additions and 1 deletions
|
@ -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 © 2016–2021 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 Python’s 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")
|
||||
|
|
Loading…
Reference in a new issue