python3Packages.hyperframe: 6.0.1 -> 6.1.0

This commit was automatically generated using update-python-libraries.

Changed files
+6 -3
pkgs
development
python-modules
hyperframe
+6 -3
pkgs/development/python-modules/hyperframe/default.nix
···
lib,
buildPythonPackage,
fetchPypi,
+
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "hyperframe";
-
version = "6.0.1";
-
format = "setuptools";
+
version = "6.1.0";
+
pyproject = true;
src = fetchPypi {
inherit pname version;
-
sha256 = "ae510046231dc8e9ecb1a6586f63d2347bf4c8905914aa84ba585ae85f28a914";
+
hash = "sha256-9jCQigCFSnreq9Y4K0OSOkxM1Lgh/LUn5queFTgqOwg=";
};
+
+
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];