blob: eb7473d6918729dbae2d2daa3e6764e7bdcd5204 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "unicodedata2";
version = "17.0.0";
format = "setuptools";
src = fetchPypi {
inherit version pname;
sha256 = "sha256-/6Lw1oNGQv6ZbTVuco2ohyAVM7tUCXSuesl15m7MDjo=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "unicodedata2" ];
meta = {
description = "Backport and updates for the unicodedata module";
homepage = "https://github.com/mikekap/unicodedata2";
changelog = "https://github.com/fonttools/unicodedata2/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ sternenseemann ];
};
}
|