|
|
|
@ -1,12 +1,12 @@
|
|
|
|
|
{ stdenv, buildPythonApplication, fetchPypi |
|
|
|
|
, python-slugify, requests, urllib3, six }: |
|
|
|
|
, python-slugify, requests, urllib3, six, setuptools }: |
|
|
|
|
|
|
|
|
|
buildPythonApplication rec { |
|
|
|
|
pname = "transifex-client"; |
|
|
|
|
version = "0.13.6"; |
|
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ |
|
|
|
|
urllib3 requests python-slugify six |
|
|
|
|
urllib3 requests python-slugify six setuptools |
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
src = fetchPypi { |
|
|
|
@ -24,7 +24,7 @@ buildPythonApplication rec {
|
|
|
|
|
doCheck = false; |
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; { |
|
|
|
|
homepage = https://www.transifex.com/; |
|
|
|
|
homepage = "https://www.transifex.com/"; |
|
|
|
|
license = licenses.gpl2; |
|
|
|
|
description = "Transifex translation service client"; |
|
|
|
|
maintainers = [ maintainers.etu ]; |
|
|
|
|