python2Packages.idna: keep 2.10

This commit is contained in:
Frederik Rietdijk
2021-04-03 17:49:42 +02:00
parent 90d59427ed
commit 91516e5e39
2 changed files with 24 additions and 1 deletions
@@ -0,0 +1,20 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "idna";
version = "2.10";
src = fetchPypi {
inherit pname version;
sha256 = "b307872f855b18632ce0c21c5e45be78c0ea7ae4c15c828c20788b26921eb3f6";
};
meta = {
homepage = "https://github.com/kjd/idna/";
description = "Internationalized Domain Names in Applications (IDNA)";
license = lib.licenses.bsd3;
};
}