0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python3Packages.hyperframe: 6.0.1 -> 6.1.0

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt 2025-04-01 07:13:59 +02:00
parent 0398de04a7
commit 3c8f29bb94
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -2,19 +2,22 @@
lib, lib,
buildPythonPackage, buildPythonPackage,
fetchPypi, fetchPypi,
setuptools,
pytestCheckHook, pytestCheckHook,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "hyperframe"; pname = "hyperframe";
version = "6.0.1"; version = "6.1.0";
format = "setuptools"; pyproject = true;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "ae510046231dc8e9ecb1a6586f63d2347bf4c8905914aa84ba585ae85f28a914"; hash = "sha256-9jCQigCFSnreq9Y4K0OSOkxM1Lgh/LUn5queFTgqOwg=";
}; };
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ]; nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "hyperframe" ]; pythonImportsCheck = [ "hyperframe" ];