pyjwt 1.7.1-1 source package in Ubuntu

Changelog

pyjwt (1.7.1-1) unstable; urgency=medium

  [ Ondřej Nový ]
  * Use debhelper-compat instead of debian/compat.

  [ Daniele Tricoli ]
  * New upstream release. (Closes: #942241)
  * Use my Debian email address.
  * debian/control
    - Bump debhelper-compat to 12.
    - Bump Standards-Version to 4.4.1 (no changes needed).
  * debian/copyright
    - Update copyright years.
  * debian/patches/0001-Fix-tests-to-work-with-pytest-3.9.0.patch
    - Drop since no needed anymore.

 -- Daniele Tricoli <email address hidden>  Tue, 22 Oct 2019 02:58:08 +0200

Upload details

Uploaded by:
Debian Python Modules Team
Uploaded to:
Sid
Original maintainer:
Debian Python Modules Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pyjwt_1.7.1-1.dsc 2.4 KiB cd9dc39190646b9c94963a17089b59c1e6a1d4b8f0d89c156144465e8c41b6e1
pyjwt_1.7.1.orig.tar.gz 41.0 KiB 8d59a976fb773f3e6a39c85636357c4f0e242707394cadadd9814f5cbaa20e96
pyjwt_1.7.1-1.debian.tar.xz 4.5 KiB 39c79d8ca81eb3fd69a2bcf28682f929720b663ea609a7f8550b682efef4ef44

Available diffs

No changes file available.

Binary packages built by this source

python-jwt: No summary available for python-jwt in ubuntu focal.

No description available for python-jwt in ubuntu focal.

python3-jwt: Python 3 implementation of JSON Web Token

 PyJWT implements the JSON Web Token draft 01, a way of representing
 signed content using JSON data structures.
 .
 Supported algorithms for cryptographic signing:
 .
   * HS256 - HMAC using SHA-256 hash algorithm (default)
   * HS384 - HMAC using SHA-384 hash algorithm
   * HS512 - HMAC using SHA-512 hash algorithm
   * RS256 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-256 hash
     algorithm
   * RS384 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-384 hash
     algorithm
   * RS512 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-512 hash
     algorithm
 .
 Supported reserved claim names:
   - "exp" (Expiration Time) Claim
 .
 This package contains the Python 3 version of the library.