mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
transifex-client: Add missing setuptools dependency
This commit is contained in:
parent
4c70f45e8a
commit
d1a8006b89
@ -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 ];
|
||||
|
Loading…
Reference in New Issue
Block a user