summaryrefslogtreecommitdiff
path: root/debian/control
blob: 5d18578da35750fb23e865b16f4720211bcb6735 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Source: py-macaroon-bakery
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Colin Watson <cjwatson@debian.org>
Build-Depends: debhelper (>= 9~),
               dh-python,
               python3-all,
               python3-httmock,
               python3-mock,
               python3-nacl (>= 1.1.2),
               python3-nose,
               python3-protobuf (>= 3.0.0),
               python3-pymacaroons (>= 0.12.0),
               python3-requests (>= 2.18.1),
               python3-rfc3339 (>= 1.0),
               python3-setuptools,
               python3-six (>= 1.11.0),
               python3-tz (>= 2017.2)
Standards-Version: 4.1.1
X-Python3-Version: >= 3.5
Vcs-Git: https://salsa.debian.org/python-team/modules/py-macaroon-bakery
Vcs-Browser: https://salsa.debian.org/python-team/modules/py-macaroon-bakery
Homepage: https://github.com/go-macaroon-bakery/py-macaroon-bakery
Rules-Requires-Root: no

Package: python3-macaroonbakery
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends},
         ${python3:Depends}
Description: Higher-level macaroon operations for Python 3
 Macaroons, like cookies, are a form of bearer credential.  Unlike opaque
 tokens, macaroons embed caveats that define specific authorization
 requirements for the target service, the service that issued the root
 macaroon and which is capable of verifying the integrity of macaroons it
 receives.
 .
 Macaroons allow for delegation and attenuation of authorization.  They are
 simple and fast to verify, and decouple authorization policy from the
 enforcement of that policy.
 .
 The macaroonbakery library builds on pymacaroons to allow working with
 macaroons at a higher level, such as by automatically gathering discharge
 macaroons for third-party caveats from their corresponding services.