From 09d4959131394829370c41f14109c8ad61051de9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 27 May 2022 21:37:41 +0200 Subject: [PATCH] python310Packages.cbor2: 5.4.2.post1 -> 5.4.3 --- pkgs/development/python-modules/cbor2/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/cbor2/default.nix b/pkgs/development/python-modules/cbor2/default.nix index 5039872b336f..7fd5baf57618 100644 --- a/pkgs/development/python-modules/cbor2/default.nix +++ b/pkgs/development/python-modules/cbor2/default.nix @@ -9,13 +9,14 @@ buildPythonPackage rec { pname = "cbor2"; - version = "5.4.2.post1"; + version = "5.4.3"; + format = "setuptools"; - disabled = pythonOlder "3.6"; + disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - sha256 = "sha256-nPIdWWBLlSnXh3yOA0Ki66rhoH/o/1aD3HX+wVhHx5c="; + hash = "sha256-Yrhjxe5s7UAyr+lI88FITzdVUJldO4SYFFI3/ijlRsI="; }; nativeBuildInputs = [ @@ -27,8 +28,8 @@ buildPythonPackage rec { ]; postPatch = '' - substituteInPlace setup.cfg \ - --replace "--cov" "" + substituteInPlace pyproject.toml \ + --replace " --cov" "" ''; # https://github.com/agronholm/cbor2/issues/99