mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
transifex-client: remove as deprecated
This commit is contained in:
parent
5fcfdd4990
commit
0751c7f1d3
@ -1,49 +0,0 @@
|
||||
{ lib
|
||||
, buildPythonApplication
|
||||
, fetchPypi
|
||||
, python-slugify
|
||||
, requests
|
||||
, urllib3
|
||||
, six
|
||||
, setuptools
|
||||
, gitpython
|
||||
, pythonRelaxDepsHook
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "transifex-client";
|
||||
version = "0.14.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "11dc95cefe90ebf0cef3749c8c7d85b9d389c05bd0e3389bf117685df562bd5c";
|
||||
};
|
||||
|
||||
# https://github.com/transifex/transifex-client/issues/323
|
||||
nativeBuildInputs = [
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"python-slugify"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
gitpython
|
||||
python-slugify
|
||||
requests
|
||||
setuptools
|
||||
six
|
||||
urllib3
|
||||
];
|
||||
|
||||
# Requires external resources
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Transifex translation service client";
|
||||
homepage = "https://www.transifex.com/";
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ sikmir ];
|
||||
};
|
||||
}
|
@ -1006,6 +1006,7 @@ mapAliases ({
|
||||
tokodon = plasma5Packages.tokodon;
|
||||
tor-browser-bundle-bin = tor-browser; # Added 2023-09-23
|
||||
transfig = fig2dev; # Added 2022-02-15
|
||||
transifex-client = transifex-cli; # Added 2023-12-29
|
||||
trezor_agent = trezor-agent; # Added 2024-01-07
|
||||
trustedGrub = throw "trustedGrub has been removed, because it is not maintained upstream anymore"; # Added 2023-05-10
|
||||
trustedGrub-for-HP = throw "trustedGrub-for-HP has been removed, because it is not maintained upstream anymore"; # Added 2023-05-10
|
||||
|
@ -14077,8 +14077,6 @@ with pkgs;
|
||||
|
||||
tracefilesim = callPackage ../development/tools/analysis/garcosim/tracefilesim { };
|
||||
|
||||
transifex-client = python39.pkgs.callPackage ../tools/text/transifex-client { };
|
||||
|
||||
transifex-cli = callPackage ../applications/misc/transifex-cli { };
|
||||
|
||||
translatelocally = callPackage ../applications/misc/translatelocally { };
|
||||
|
Loading…
Reference in New Issue
Block a user