dc1bc652b0
Co-authored-by: Taeer Bar-Yam <Radvendii@users.noreply.github.com>
33 lines
702 B
Nix
33 lines
702 B
Nix
{
|
|
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 ];
|
|
};
|
|
|
|
}
|