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: eeecb9d00e4b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9388152cd3b8
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Mar 4, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    etu Elis Hirwing
    Copy the full SHA
    13c701e View commit details

Commits on Mar 11, 2019

  1. Merge pull request #56816 from etu/transifex-fix-build

    transifex-client: Fix build after updated dependencies
    etu authored Mar 11, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9388152 View commit details
Showing with 5 additions and 3 deletions.
  1. +5 −3 pkgs/tools/text/transifex-client/default.nix
8 changes: 5 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 }:
, python-slugify, requests, urllib3, six }:

buildPythonApplication rec {
pname = "transifex-client";
version = "0.13.6";

propagatedBuildInputs = [
urllib3 requests python-slugify
urllib3 requests python-slugify six
];

src = fetchPypi {
@@ -15,7 +15,9 @@ buildPythonApplication rec {
};

prePatch = ''
substituteInPlace requirements.txt --replace "urllib3<1.24" "urllib3<2.0"
substituteInPlace requirements.txt --replace "urllib3<1.24" "urllib3<2.0" \
--replace "six==1.11.0" "six<2.0.0" \
--replace "python-slugify==1.2.6" "python-slugify<3.0.0"
'';

# Requires external resources