2018-02-02 13:54:23 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, idna }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-03-14 17:43:28 +00:00
|
|
|
pname = "idna-ssl";
|
2018-07-22 11:10:52 +01:00
|
|
|
version = "1.1.0";
|
2018-02-02 13:54:23 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-22 11:10:52 +01:00
|
|
|
sha256 = "a933e3bb13da54383f9e8f35dc4f9cb9eb9b3b78c6b36f311254d6d0d92c6c7c";
|
2018-02-02 13:54:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ idna ];
|
|
|
|
|
|
|
|
# Infinite recursion: tests require aiohttp, aiohttp requires idna-ssl
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Patch ssl.match_hostname for Unicode(idna) domains support";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/aio-libs/idna-ssl";
|
2018-02-02 13:54:23 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
|
|
};
|
|
|
|
}
|