python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / aioopenssl / default.nix
blobe51b023a3072986018080070c3cb2ba41ef20c94
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pyopenssl,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "aioopenssl";
11   version = "0.6.0";
13   format = "setuptools";
15   src = fetchFromGitHub {
16     owner = "horazont";
17     repo = "aioopenssl";
18     rev = "refs/tags/v${version}";
19     hash = "sha256-7Q+4/DlP+kUnC3YNk7woJaxLEEiuVmolUOajepM003Q=";
20   };
22   propagatedBuildInputs = [ pyopenssl ];
24   pythonImportsCheck = [ "aioopenssl" ];
26   nativeCheckInputs = [ pytestCheckHook ];
28   meta = {
29     description = "TLS-capable transport using OpenSSL for asyncio";
30     homepage = "https://github.com/horazont/aioopenssl";
31     license = lib.licenses.asl20;
32     maintainers = with lib.maintainers; [ dotlambda ];
33   };