linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / idna-ssl / default.nix
blobba11a39f5d9c3b6a0d6633800e94d99c5326da76
1 { lib, buildPythonPackage, fetchPypi, idna }:
3 buildPythonPackage rec {
4   pname = "idna-ssl";
5   version = "1.1.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "a933e3bb13da54383f9e8f35dc4f9cb9eb9b3b78c6b36f311254d6d0d92c6c7c";
10   };
12   propagatedBuildInputs = [ idna ];
14   # Infinite recursion: tests require aiohttp, aiohttp requires idna-ssl
15   doCheck = false;
17   meta = with lib; {
18     description = "Patch ssl.match_hostname for Unicode(idna) domains support";
19     homepage = "https://github.com/aio-libs/idna-ssl";
20     license = licenses.mit;
21     maintainers = with maintainers; [ dotlambda ];
22   };