python3Packages.cx_Freeze: fix tests

This commit is contained in:
Jonathan Ringer 2020-11-29 10:36:13 -08:00 committed by Frederik Rietdijk
parent 89857a3c1e
commit c2b7ad587c

View file

@ -1,4 +1,5 @@
{ stdenv, buildPythonPackage, fetchPypi }:
{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook }:
buildPythonPackage rec {
pname = "hyperframe";
version = "6.0.0";
@ -8,6 +9,8 @@ buildPythonPackage rec {
sha256 = "742d2a4bc3152a340a49d59f32e33ec420aa8e7054c1444ef5c7efff255842f1";
};
checkInputs = [ pytestCheckHook ];
meta = with stdenv.lib; {
description = "HTTP/2 framing layer for Python";
homepage = "http://hyper.rtfd.org/";