pythonPackages.idna-ssl: init at 1.0.0

This commit is contained in:
Robert Schütz 2018-02-02 14:54:23 +01:00
parent 65170e9404
commit b403a17db8
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchPypi, idna }:
buildPythonPackage rec {
pname = "idna_ssl";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "1227e44039bd31e02adaeafdbba61281596d623d222643fb021f87f2144ea147";
};
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";
homepage = https://github.com/aio-libs/idna-ssl;
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}

View file

@ -5215,6 +5215,8 @@ in {
};
};
idna-ssl = callPackage ../development/python-modules/idna-ssl/default.nix { };
ijson = callPackage ../development/python-modules/ijson/default.nix {};
imagesize = buildPythonPackage rec {