summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-12-05 22:11:45 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-12-05 22:11:45 +0100
commit71b77c86307337d45dbff0c13643b12d3a7e59f8 (patch)
treee0cd71aa1e015a204d769a850b660ce407a8a03e
parent91b4118cd45aebb68c06511d82b06b449dc34084 (diff)
downloadnixpkgs-71b77c86307337d45dbff0c13643b12d3a7e59f8.tar
nixpkgs-71b77c86307337d45dbff0c13643b12d3a7e59f8.tar.gz
nixpkgs-71b77c86307337d45dbff0c13643b12d3a7e59f8.tar.bz2
nixpkgs-71b77c86307337d45dbff0c13643b12d3a7e59f8.tar.lz
nixpkgs-71b77c86307337d45dbff0c13643b12d3a7e59f8.tar.xz
nixpkgs-71b77c86307337d45dbff0c13643b12d3a7e59f8.tar.zst
nixpkgs-71b77c86307337d45dbff0c13643b12d3a7e59f8.zip
transifex-client: rename GitPython
-rw-r--r--pkgs/tools/text/transifex-client/default.nix15
1 files changed, 10 insertions, 5 deletions
diff --git a/pkgs/tools/text/transifex-client/default.nix b/pkgs/tools/text/transifex-client/default.nix
index ae23e577559..07a49c3d450 100644
--- a/pkgs/tools/text/transifex-client/default.nix
+++ b/pkgs/tools/text/transifex-client/default.nix
@@ -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 ];
   };
 }