nixpkgs/pkgs/development/python-modules/idna-ssl/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

25 lines
647 B
Nix

{ lib, buildPythonPackage, fetchPypi, idna }:
buildPythonPackage rec {
pname = "idna-ssl";
version = "1.1.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "a933e3bb13da54383f9e8f35dc4f9cb9eb9b3b78c6b36f311254d6d0d92c6c7c";
};
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 ];
};
}