mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-23 00:50:59 +00:00
Merge pull request #214419 from r-ryantm/auto-update/python310Packages.deep-translator
python310Packages.deep-translator: 1.9.2 -> 1.9.3
This commit is contained in:
@@ -1,12 +1,22 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, beautifulsoup4, requests, click }:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, beautifulsoup4
|
||||
, requests
|
||||
, click
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "deep-translator";
|
||||
version = "1.9.2";
|
||||
version = "1.9.3";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-iHK1A44SZqJ5N+D2ets76xuU0mryGT7TehM4wryB/AY=";
|
||||
hash = "sha256-7VsEN6t9c0FMw0zHWnxnIyilQmQ127rXEfLrAYatKEc=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
@@ -25,9 +35,10 @@ buildPythonPackage rec {
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Flexible, free and unlimited Python tool to translate between different languages in a simple way using multiple translators";
|
||||
description = "Python tool to translate between different languages by using multiple translators";
|
||||
homepage = "https://deep-translator.readthedocs.io";
|
||||
license = licenses.mit;
|
||||
changelog = "https://github.com/nidhaloff/deep-translator/releases/tag/v1.10.0";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ wolfangaukang ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user