nixpkgs/pkgs/development/python-modules/idna-ssl/default.nix

24 lines
620 B
Nix
Raw Normal View History

2018-02-02 13:54:23 +00:00
{ lib, buildPythonPackage, fetchPypi, idna }:
buildPythonPackage rec {
pname = "idna-ssl";
2018-07-22 10:10:52 +00:00
version = "1.1.0";
2018-02-02 13:54:23 +00:00
src = fetchPypi {
inherit pname version;
2018-07-22 10:10:52 +00: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";
homepage = https://github.com/aio-libs/idna-ssl;
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}