emacsPackages.lsp-bridge: 0-unstable-2025-01-11 -> 0-unstable-2025-01-22 (#376531)
[NixPkgs.git] / pkgs / development / python-modules / idna-ssl / default.nix
blobcc0c12f70999349c4062ad28603cb3acf791e139
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   idna,
6 }:
8 buildPythonPackage rec {
9   pname = "idna-ssl";
10   version = "1.1.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "a933e3bb13da54383f9e8f35dc4f9cb9eb9b3b78c6b36f311254d6d0d92c6c7c";
16   };
18   propagatedBuildInputs = [ idna ];
20   # Infinite recursion: tests require aiohttp, aiohttp requires idna-ssl
21   doCheck = false;
23   meta = with lib; {
24     description = "Patch ssl.match_hostname for Unicode(idna) domains support";
25     homepage = "https://github.com/aio-libs/idna-ssl";
26     license = licenses.mit;
27     maintainers = with maintainers; [ dotlambda ];
28   };