blob: 84c89aa5258fc572c6c67b347b0a289e84082aad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
lib,
buildPythonPackage,
fetchPypi,
idna,
}:
buildPythonPackage rec {
pname = "idna-ssl";
version = "1.1.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "a933e3bb13da54383f9e8f35dc4f9cb9eb9b3b78c6b36f311254d6d0d92c6c7c";
};
propagatedBuildInputs = [ idna ];
# Infinite recursion: tests require aiohttp, aiohttp requires idna-ssl
doCheck = false;
meta = {
description = "Patch ssl.match_hostname for Unicode(idna) domains support";
homepage = "https://github.com/aio-libs/idna-ssl";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|