nixpkgs/pkgs/development/python-modules/idna/default.nix

24 lines
469 B
Nix
Raw Normal View History

2017-12-31 10:00:35 +00:00
{ lib
, buildPythonPackage
, fetchPypi
2021-03-24 16:39:10 +00:00
, pytestCheckHook
2017-12-31 10:00:35 +00:00
}:
buildPythonPackage rec {
pname = "idna";
2021-03-24 09:28:14 +00:00
version = "3.1";
2017-12-31 10:00:35 +00:00
src = fetchPypi {
inherit pname version;
2021-03-24 09:28:14 +00:00
sha256 = "c5b02147e01ea9920e6b0a3f1f7bb833612d507592c837a6c49552768f4054e1";
2017-12-31 10:00:35 +00:00
};
2021-03-24 16:39:10 +00:00
checkInputs = [ pytestCheckHook ];
2017-12-31 10:00:35 +00:00
meta = {
homepage = "https://github.com/kjd/idna/";
2017-12-31 10:00:35 +00:00
description = "Internationalized Domain Names in Applications (IDNA)";
license = lib.licenses.bsd3;
};
2020-08-25 03:07:09 +01:00
}