2022-01-26 04:04:25 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, isPy27 }:
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "unicodedata2";
|
2022-01-26 04:04:25 +00:00
|
|
|
version = "14.0.0";
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2022-01-26 04:04:25 +00:00
|
|
|
disabled = isPy27;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit version pname;
|
|
|
|
sha256 = "110nnvh02ssp92xbmswy39aa186jrmb7m41x4220wigl8c0dzxs1";
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
|
2022-01-26 04:04:25 +00:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Backport and updates for the unicodedata module";
|
2020-10-07 09:15:18 +00:00
|
|
|
homepage = "https://github.com/mikekap/unicodedata2";
|
2020-09-25 04:45:31 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
|
|
};
|
|
|
|
}
|