Files
nixpkgs/pkgs/development/python-modules/deepl/default.nix
2026-08-19 00:36:41 +02:00

41 lines
964 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
requests,
poetry-core,
keyring,
}:
buildPythonPackage (finalAttrs: {
pname = "deepl";
version = "1.32.0";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-MBa/hvH1Prbl/ttFh0bGv2V5qEC1fFSi7XAbA0S8eeE=";
};
build-system = [ poetry-core ];
dependencies = [
requests
keyring
];
# Requires internet access and an API key
doCheck = false;
pythonImportsCheck = [ "deepl" ];
meta = {
description = "Language translation API that allows other computer programs to send texts and documents to DeepL's servers and receive high-quality translations";
mainProgram = "deepl";
homepage = "https://github.com/DeepLcom/deepl-python";
changelog = "https://github.com/DeepLcom/deepl-python/blob/v${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ MaskedBelgian ];
};
})