Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4c70f45e8aa2
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d1a8006b89bd
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 1, 2019

  1. transifex-client: Add missing setuptools dependency

    etu authored and Matthieu Coudron committed Oct 1, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d1a8006 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/text/transifex-client/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/text/transifex-client/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];