python3Packages.translatepy: 2.2 -> 2.3

This commit is contained in:
Martin Weinelt
2022-07-21 22:35:19 +02:00
parent dfe549d0e1
commit b3c5c9cdcd
@@ -4,25 +4,27 @@
, requests
, beautifulsoup4
, pyuseragents
, safeio
, inquirer
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "translatepy";
version = "2.2";
version = "2.3";
src = fetchFromGitHub {
owner = "Animenosekai";
repo = "translate";
rev = "v${version}";
sha256 = "rnt4nmDgQXSgzwNCcsZwbQn2bv83DFhL86kebeiSosc=";
rev = "refs/tags/v${version}";
sha256 = "sha256-cx5OeBrB8il8KrcyOmQbQ7VCXoaA5RP++oTTxCs/PcM=";
};
propagatedBuildInputs = [
requests
beautifulsoup4
pyuseragents
safeio
inquirer
];