Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 20 lines 412 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "idna"; 8 version = "2.8"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "c357b3f628cf53ae2c4c05627ecc484553142ca23264e593d327bcde5e9c3407"; 13 }; 14 15 meta = { 16 homepage = "https://github.com/kjd/idna/"; 17 description = "Internationalized Domain Names in Applications (IDNA)"; 18 license = lib.licenses.bsd3; 19 }; 20}