summary refs log tree commit diff
path: root/pkgs/development/python-modules/idna/default.nix
blob: cb8636f135a8ef475518f0cd9431e16a7e45e447 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "idna";
  version = "3.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "467fbad99067910785144ce333826c71fb0e63a425657295239737f7ecd125f3";
  };

  checkInputs = [ pytestCheckHook ];

  meta = {
    homepage = "https://github.com/kjd/idna/";
    description = "Internationalized Domain Names in Applications (IDNA)";
    license = lib.licenses.bsd3;
  };
}