Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5f3be9bc4b45
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fc40f61347e9
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 11, 2019

  1. pythonPackages.poetry: Fix build

    (cherry picked from commit bfac72b)
    infinisil authored and Mic92 committed Mar 11, 2019
    Copy the full SHA
    fc40f61 View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/development/python-modules/poetry/default.nix
5 changes: 3 additions & 2 deletions pkgs/development/python-modules/poetry/default.nix
Original file line number Diff line number Diff line change
@@ -40,8 +40,9 @@ in buildPythonPackage rec {
};

postPatch = ''
substituteInPlace pyproject.toml --replace "3.0a3" "3.0.0a3"
substituteInPlace setup.py --replace "3.0a3" "3.0.0a3"
substituteInPlace setup.py --replace \
"requests-toolbelt>=0.8.0,<0.9.0" \
"requests-toolbelt>=0.8.0,<0.10.0"
'';

propagatedBuildInputs = [