evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / idna / default.nix
bloba3fff70db1b437ba3c9efd7544670c82aa96c992
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   flit-core,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "idna";
11   version = "3.10";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-EvZcm0cKvabcNc+OY8xXSxxSsR3yyGAwrwrAmwGxPqk=";
17   };
19   build-system = [ flit-core ];
21   nativeCheckInputs = [ pytestCheckHook ];
23   meta = {
24     homepage = "https://github.com/kjd/idna/";
25     changelog = "https://github.com/kjd/idna/releases/tag/v${version}";
26     description = "Internationalized Domain Names in Applications (IDNA)";
27     license = lib.licenses.bsd3;
28   };