python3Packages.pyicumessageformat: init at 1.0.0

Co-authored-by: Taeer Bar-Yam <Radvendii@users.noreply.github.com>
This commit is contained in:
Kerstin Humm 2024-07-22 17:06:05 +02:00 committed by Valentin Gagarin
parent 5ced09d094
commit dc1bc652b0
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pyicumessageformat";
version = "1.0.0";
pyproject = true;
build-system = [ setuptools ];
src = fetchPypi {
pname = "pyicumessageformat";
inherit version;
hash = "sha256-s+l8DtEMKxA/DzpwGqZSlwDqCrZuDzsj3I5K7hgfyEA=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pyicumessageformat" ];
meta = with lib; {
description = "Unopinionated Python3 parser for ICU MessageFormat";
homepage = "https://github.com/SirStendec/pyicumessageformat/";
license = licenses.mit;
maintainers = with maintainers; [ erictapen ];
};
}

View File

@ -11551,6 +11551,8 @@ self: super: with self; {
pyicu = callPackage ../development/python-modules/pyicu { };
pyicumessageformat = callPackage ../development/python-modules/pyicumessageformat { };
pyimpfuzzy = callPackage ../development/python-modules/pyimpfuzzy {
inherit (pkgs) ssdeep;
};