python27Packages.cbor2: 5.0.1 -> 5.1.0

This commit is contained in:
R. RyanTM 2020-04-06 13:49:14 +00:00 committed by Jon
parent 128aeca1a9
commit aba81a7eb4

View File

@ -2,11 +2,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "cbor2"; pname = "cbor2";
version = "5.0.1"; version = "5.1.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1fid6li95jx9c3v83v8c2c8lb03jgirkk9mjmck30yxcwmlxp6a2"; sha256 = "1ai1i0wydxfbdakqnrlpgdk4l2ps7gw0r9nihv9p2jgyqbl13kj3";
}; };
nativeBuildInputs = [ setuptools_scm ]; nativeBuildInputs = [ setuptools_scm ];
@ -16,7 +16,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Pure Python CBOR (de)serializer with extensive tag support"; description = "Pure Python CBOR (de)serializer with extensive tag support";
homepage = https://github.com/agronholm/cbor2; homepage = "https://github.com/agronholm/cbor2";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ taneb ]; maintainers = with maintainers; [ taneb ];
}; };