Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestCheckHook 5}: 6 7buildPythonPackage rec { 8 pname = "bnunicodenormalizer"; 9 version = "0.1.6"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 hash = "sha256-qVC6+0SnAs25DFzKPHFUOoYPlrRvkGWFptjIVom8wJM="; 15 }; 16 17 nativeCheckInputs = [ pytestCheckHook ]; 18 19 pythonImportsCheck = [ "bnunicodenormalizer" ]; 20 21 meta = with lib; { 22 description = "Bangla Unicode Normalization Toolkit"; 23 homepage = "https://github.com/mnansary/bnUnicodeNormalizer"; 24 license = licenses.mit; 25 maintainers = teams.tts.members; 26 }; 27}