nixpkgs/pkgs/development/python-modules/demoji/default.nix
Fabian Affolter 9b578e17fc python311Packages.demoji: init at 1.1.0
Module to find/replace/remove emojis in text strings

https://github.com/bsolomon1124/demoji
2024-03-21 18:34:49 +01:00

55 lines
1.0 KiB
Nix

{ 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 ];
};
}