depot/third_party/nixpkgs/pkgs/development/python-modules/pylsqpack/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

27 lines
585 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pylsqpack";
version = "0.3.17";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-LyB3jblW3H5LGop5ci1XpGUMRZl/tlwTUsv4XreqPOI=";
};
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 ];
};
}