2021-12-22 14:00:57 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, isPy27 }:
|
2020-08-24 10:14:29 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "unicodedata2";
|
2022-11-16 16:21:31 +00:00
|
|
|
version = "15.0.0";
|
2020-08-24 10:14:29 +00:00
|
|
|
|
2021-12-22 14:00:57 +00:00
|
|
|
disabled = isPy27;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit version pname;
|
2022-11-16 16:21:31 +00:00
|
|
|
sha256 = "0bcgls7m2zndpd8whgznnd5908jbsa50si2bh88wsn0agcznhv7d";
|
2020-08-24 10:14:29 +00:00
|
|
|
};
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
2020-08-24 10:14:29 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2020-08-30 22:58:53 +00:00
|
|
|
description = "Backport and updates for the unicodedata module";
|
2020-10-02 07:58:50 +00:00
|
|
|
homepage = "https://github.com/mikekap/unicodedata2";
|
2020-08-24 10:14:29 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
|
|
};
|
|
|
|
}
|