at 22.05-pre 469 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestCheckHook 5}: 6 7buildPythonPackage rec { 8 pname = "idna"; 9 version = "3.2"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "467fbad99067910785144ce333826c71fb0e63a425657295239737f7ecd125f3"; 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}