python3Packages.unicodedata2: 13.0.0-2 -> 14.0.0

https://github.com/fonttools/unicodedata2/releases/tag/14.0.0

+8 -9
+8 -9
pkgs/development/python-modules/unicodedata2/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, pytest }: 2 3 buildPythonPackage rec { 4 pname = "unicodedata2"; 5 - version = "13.0.0-2"; 6 7 - src = fetchFromGitHub { 8 - owner = "mikekap"; 9 - repo = pname; 10 - rev = version; 11 - sha256 = "0p9brbiwyg98q52y0gfyps52xv57fwqfpq0mn18p1xc1imip3h2b"; 12 }; 13 14 - checkInputs = [ pytest ]; 15 - checkPhase = "pytest tests"; 16 17 meta = with lib; { 18 description = "Backport and updates for the unicodedata module";
··· 1 + { lib, buildPythonPackage, fetchPypi, pytestCheckHook, isPy27 }: 2 3 buildPythonPackage rec { 4 pname = "unicodedata2"; 5 + version = "14.0.0"; 6 + 7 + disabled = isPy27; 8 9 + src = fetchPypi { 10 + inherit version pname; 11 + sha256 = "110nnvh02ssp92xbmswy39aa186jrmb7m41x4220wigl8c0dzxs1"; 12 }; 13 14 + checkInputs = [ pytestCheckHook ]; 15 16 meta = with lib; { 17 description = "Backport and updates for the unicodedata module";