transifex-client: Add missing setuptools dependency
This commit is contained in:
parent
4c70f45e8a
commit
d1a8006b89
@ -1,12 +1,12 @@
|
|||||||
{ stdenv, buildPythonApplication, fetchPypi
|
{ stdenv, buildPythonApplication, fetchPypi
|
||||||
, python-slugify, requests, urllib3, six }:
|
, python-slugify, requests, urllib3, six, setuptools }:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "transifex-client";
|
pname = "transifex-client";
|
||||||
version = "0.13.6";
|
version = "0.13.6";
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
urllib3 requests python-slugify six
|
urllib3 requests python-slugify six setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
@ -24,7 +24,7 @@ buildPythonApplication rec {
|
|||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://www.transifex.com/;
|
homepage = "https://www.transifex.com/";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
description = "Transifex translation service client";
|
description = "Transifex translation service client";
|
||||||
maintainers = [ maintainers.etu ];
|
maintainers = [ maintainers.etu ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user