depot/third_party/nixpkgs/pkgs/development/python-modules/pylsqpack/default.nix
Default email 01ed8ef136 Project import generated by Copybara.
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
2022-11-21 19:40:18 +02:00

26 lines
556 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pylsqpack";
version = "0.3.16";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-tnps4/aTfYUGgYJ3FL5zCqNhwEnjd1Lj7Z3xHn8jL/s=";
};
checkInputs = [ 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 ];
};
}