mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
Merge pull request #216937 from MaskedBelgian/python-module-add-deepl
python3Packages.deepl: init at 1.13.0
This commit is contained in:
commit
24ca6da6d1
41
pkgs/development/python-modules/deepl/default.nix
Normal file
41
pkgs/development/python-modules/deepl/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, requests
|
||||
, poetry-core
|
||||
, keyring
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "deepl";
|
||||
version = "1.13.0";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-Rq7L/rgfJJ3ZspuL1IfZv+x60t8cZRPkrVryJf12WLk=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
keyring
|
||||
];
|
||||
|
||||
# Requires internet access and an API key
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"deepl"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A language translation API that allows other computer programs to send texts and documents to DeepL's servers and receive high-quality translations";
|
||||
homepage = "https://github.com/DeepLcom/deepl-python";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ MaskedBelgian ];
|
||||
};
|
||||
}
|
@ -2382,6 +2382,8 @@ self: super: with self; {
|
||||
|
||||
deepdish = callPackage ../development/python-modules/deepdish { };
|
||||
|
||||
deepl = callPackage ../development/python-modules/deepl { };
|
||||
|
||||
deepmerge = callPackage ../development/python-modules/deepmerge { };
|
||||
|
||||
deeptoolsintervals = callPackage ../development/python-modules/deeptoolsintervals { };
|
||||
|
Loading…
Reference in New Issue
Block a user