summaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2017-11-02 14:35:17 +0000
committerColin Watson <cjwatson@debian.org>2017-11-02 14:35:17 +0000
commitf67cdf1c1e5cf5578a2ee79e2a34943b23d842e7 (patch)
tree8280feba22d85ebb00edac47c825723a803195bc /debian/control
parentefdccf6c55014d3f7be27d9d718ea70e8e60f869 (diff)
parent1c453126cefd68073c089b7b334b8c793b38c152 (diff)
Initial release (closes: #866779).
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control41
1 files changed, 41 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..a641fd2
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,41 @@
+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.1),
+ python3-nose,
+ python3-pymacaroons (>= 0.10.0),
+ python3-requests (>= 2.16.5),
+ python3-setuptools,
+ python3-six (>= 1.10.0)
+Standards-Version: 4.1.1
+X-Python3-Version: >= 3.5
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/py-macaroon-bakery.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/py-macaroon-bakery.git
+Homepage: https://github.com/go-macaroon-bakery/py-macaroon-bakery
+
+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.