pythonPackages.idna-ssl: init at 1.0.0
This commit is contained in:
parent
65170e9404
commit
b403a17db8
23
pkgs/development/python-modules/idna-ssl/default.nix
Normal file
23
pkgs/development/python-modules/idna-ssl/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user