Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / idna / default.nix
blob77aeb4483dc3d737650fc5fedb3fd23c300b3ab5
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , flit-core
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "idna";
10   version = "3.6";
11   format = "pyproject";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-ns270IOwZ5iuHoaty/6KsUec+GTk7jD+TkagA9Ekkco=";
16   };
18   nativeBuildInputs = [
19     flit-core
20   ];
22   nativeCheckInputs = [
23     pytestCheckHook
24   ];
26   meta = {
27     homepage = "https://github.com/kjd/idna/";
28     description = "Internationalized Domain Names in Applications (IDNA)";
29     license = lib.licenses.bsd3;
30   };