biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / hyperframe / default.nix
blobe82b3b21c8b62adb25cf65f47772bc6073f97aa4
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6 }:
8 buildPythonPackage rec {
9   pname = "hyperframe";
10   version = "6.0.1";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "ae510046231dc8e9ecb1a6586f63d2347bf4c8905914aa84ba585ae85f28a914";
16   };
18   nativeCheckInputs = [ pytestCheckHook ];
20   pythonImportsCheck = [ "hyperframe" ];
22   meta = with lib; {
23     description = "HTTP/2 framing layer for Python";
24     homepage = "https://github.com/python-hyper/hyperframe/";
25     license = licenses.mit;
26     maintainers = [ ];
27   };