python311Packages.demoji: init at 1.1.0

Module to find/replace/remove emojis in text strings

https://github.com/bsolomon1124/demoji
This commit is contained in:
Fabian Affolter 2024-03-21 18:34:49 +01:00
parent 65c8c9eb41
commit 9b578e17fc
2 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,54 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pythonOlder
, pytestCheckHook
, ujson
}:
buildPythonPackage rec {
pname = "demoji";
version = "1.1.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "bsolomon1124";
repo = "demoji";
rev = "refs/tags/v${version}";
hash = "sha256-ojy4JiM6xvP9J40Z5uFCMUZvZtLZ1le2p/2/NfAUAtk=";
};
postPatch = ''
substituteInPlace setup.cfg \
--replace-fail "pytest-runner" ""
'';
build-system = [
setuptools
];
passthru.optional-dependencies = {
ujson = [
ujson
];
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"demoji"
];
meta = with lib; {
description = "Module to find/replace/remove emojis in text strings";
homepage = "https://github.com/bsolomon1124/demoji";
changelog = "https://github.com/bsolomon1124/demoji/blob/${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -2864,6 +2864,8 @@ self: super: with self; {
demjson3 = callPackage ../development/python-modules/demjson3 { };
demoji = callPackage ../development/python-modules/demoji { };
dendropy = callPackage ../development/python-modules/dendropy { };
denonavr = callPackage ../development/python-modules/denonavr { };