python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / python2-modules / idna / default.nix
blob9a1c1dc271f19618c93cd18024cce59c963dcfa7
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "idna";
9   version = "2.10";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "b307872f855b18632ce0c21c5e45be78c0ea7ae4c15c828c20788b26921eb3f6";
14   };
16   checkInputs = [ pytestCheckHook ];
18   meta = {
19     homepage = "https://github.com/kjd/idna/";
20     description = "Internationalized Domain Names in Applications (IDNA)";
21     license = lib.licenses.bsd3;
22   };