at master 656 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 idna, 6}: 7 8buildPythonPackage rec { 9 pname = "idna-ssl"; 10 version = "1.1.0"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "a933e3bb13da54383f9e8f35dc4f9cb9eb9b3b78c6b36f311254d6d0d92c6c7c"; 16 }; 17 18 propagatedBuildInputs = [ idna ]; 19 20 # Infinite recursion: tests require aiohttp, aiohttp requires idna-ssl 21 doCheck = false; 22 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 }; 29}