1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytestCheckHook
5}:
6
7buildPythonPackage rec {
8 pname = "idna";
9 version = "2.10";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "b307872f855b18632ce0c21c5e45be78c0ea7ae4c15c828c20788b26921eb3f6";
14 };
15
16 checkInputs = [ pytestCheckHook ];
17
18 meta = {
19 homepage = "https://github.com/kjd/idna/";
20 description = "Internationalized Domain Names in Applications (IDNA)";
21 license = lib.licenses.bsd3;
22 };
23}