python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / hpack / default.nix
blobdf23b4ec3c8ee2845afbfe83f7ab4639e503fb47
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
6   hypothesis,
7   pytestCheckHook,
8 }:
10 buildPythonPackage rec {
11   pname = "hpack";
12   version = "4.0.0";
13   format = "setuptools";
14   disabled = pythonOlder "3.6";
16   src = fetchFromGitHub {
17     owner = "python-hyper";
18     repo = "hpack";
19     rev = "v${version}";
20     hash = "sha256-2CehGy3K5fKbkB1J8+8x1D4XvnBn1Mbapx+p8rdXDYc=";
21   };
23   nativeCheckInputs = [
24     hypothesis
25     pytestCheckHook
26   ];
28   pythonImportsCheck = [ "hpack" ];
30   meta = with lib; {
31     description = "Pure-Python HPACK header compression";
32     homepage = "https://github.com/python-hyper/hpack";
33     license = licenses.mit;
34     maintainers = [ ];
35   };