python311Packages.deep-translator: 1.10.1 -> 1.11.1

Changelog: https://github.com/nidhaloff/deep-translator/releases/tag/v1.11.1
This commit is contained in:
Fabian Affolter 2023-06-06 23:21:07 +02:00
parent 5399c9ac5a
commit 66340d7278

View File

@ -5,21 +5,26 @@
, requests
, click
, pythonOlder
, poetry-core
}:
buildPythonPackage rec {
pname = "deep-translator";
version = "1.10.1";
format = "setuptools";
version = "1.11.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "deep_translator";
inherit version;
hash = "sha256-6ZQ42rcOO+vNqTLj9ehv09MrQ/h9Zu2fi2gW2xRvHZ8=";
hash = "sha256-Q73sKqin8R8dUsMS9EjYXlxWDCSQb9R8wvvh4OXl6GY=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
beautifulsoup4
requests
@ -38,7 +43,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python tool to translate between different languages by using multiple translators";
homepage = "https://deep-translator.readthedocs.io";
changelog = "https://github.com/nidhaloff/deep-translator/releases/tag/v1.10.0";
changelog = "https://github.com/nidhaloff/deep-translator/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ wolfangaukang ];
};