83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
26 lines
560 B
Nix
26 lines
560 B
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pylsqpack";
|
|
version = "0.3.16";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-tnps4/aTfYUGgYJ3FL5zCqNhwEnjd1Lj7Z3xHn8jL/s=";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "pylsqpack" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python wrapper for the ls-qpack QPACK library";
|
|
homepage = "https://github.com/aiortc/pylsqpack";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ onny ];
|
|
};
|
|
}
|