10 unicode-character-database,
13 buildPythonPackage rec {
19 inherit pname version;
20 hash = "sha256-9w6yr28zq0LgOvMp5fCFaHGOwK4wbbDo/g1jH4Uky0E=";
24 # Load data files from the unicode-character-database package instead of
25 # downloading them from the internet. (nixpkgs-specific, not upstreamable)
27 src = ./0001-use-packaged-unicode-data.patch;
28 ucd_dir = "${unicode-character-database}/share/unicode";
42 # Package has no unit tests, but we can check an example as per README.rst:
45 python -m youseedee 0x078A | grep -qE "Block\s+Thaana"
50 description = "Python library for querying the Unicode Character Database";
51 homepage = "https://github.com/simoncozens/youseedee";
52 license = licenses.mit;
53 maintainers = with maintainers; [ danc86 ];