3
0
Fork 0
forked from mirrors/nixpkgs

transifex-client: rename GitPython

This commit is contained in:
Fabian Affolter 2022-12-05 22:11:45 +01:00
parent 91b4118cd4
commit 71b77c8630

View file

@ -6,7 +6,7 @@
, urllib3
, six
, setuptools
, GitPython
, gitpython
, pythonRelaxDepsHook
}:
@ -20,11 +20,16 @@ buildPythonApplication rec {
};
# https://github.com/transifex/transifex-client/issues/323
nativeBuildInputs = [ pythonRelaxDepsHook ];
pythonRelaxDeps = [ "python-slugify" ];
nativeBuildInputs = [
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"python-slugify"
];
propagatedBuildInputs = [
GitPython
gitpython
python-slugify
requests
setuptools
@ -36,9 +41,9 @@ buildPythonApplication rec {
doCheck = false;
meta = with lib; {
description = "Transifex translation service client";
homepage = "https://www.transifex.com/";
license = licenses.gpl2Only;
description = "Transifex translation service client";
maintainers = with maintainers; [ sikmir ];
};
}