Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / hyperframe / default.nix
blobe42ee0a46f6844dec9ef9444996df4dbdca5ef13
1 { lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
3 buildPythonPackage rec {
4   pname = "hyperframe";
5   version = "6.0.1";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "ae510046231dc8e9ecb1a6586f63d2347bf4c8905914aa84ba585ae85f28a914";
11   };
13   nativeCheckInputs = [ pytestCheckHook ];
15   pythonImportsCheck = [ "hyperframe" ];
17   meta = with lib; {
18     description = "HTTP/2 framing layer for Python";
19     homepage = "https://github.com/python-hyper/hyperframe/";
20     license = licenses.mit;
21     maintainers = with maintainers; [ ];
22   };