0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

python3Packages.unicodedata2: 13.0.0-2 -> 14.0.0

https://github.com/fonttools/unicodedata2/releases/tag/14.0.0
This commit is contained in:
sternenseemann 2021-12-22 15:00:57 +01:00 committed by sterni
parent 60989dc971
commit e57acb94b3

View file

@ -1,18 +1,17 @@
{ lib, buildPythonPackage, fetchFromGitHub, pytest }:
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, isPy27 }:
buildPythonPackage rec {
pname = "unicodedata2";
version = "13.0.0-2";
version = "14.0.0";
src = fetchFromGitHub {
owner = "mikekap";
repo = pname;
rev = version;
sha256 = "0p9brbiwyg98q52y0gfyps52xv57fwqfpq0mn18p1xc1imip3h2b";
disabled = isPy27;
src = fetchPypi {
inherit version pname;
sha256 = "110nnvh02ssp92xbmswy39aa186jrmb7m41x4220wigl8c0dzxs1";
};
checkInputs = [ pytest ];
checkPhase = "pytest tests";
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Backport and updates for the unicodedata module";