nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 23 lines 469 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestCheckHook 5}: 6 7buildPythonPackage rec { 8 pname = "idna"; 9 version = "3.3"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"; 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}