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

Commits on Mar 3, 2019

  1. python.pkgs.wptserve: relax h2 version constraint

    (cherry picked from commit 3c4c8b6)
    Robert Schütz authored and FRidh committed Mar 3, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    75ee83d View commit details
Showing with 4 additions and 0 deletions.
  1. +4 −0 pkgs/development/python-modules/wptserve/default.nix
4 changes: 4 additions & 0 deletions pkgs/development/python-modules/wptserve/default.nix
Original file line number Diff line number Diff line change
@@ -16,6 +16,10 @@ buildPythonPackage rec {
sha256 = "9d0c6adc279748abea81ac12b7a2cac97ebbdd87826dc11f6dbd85b781e9442a";
};

postPatch = ''
substituteInPlace setup.py --replace "h2==" "h2>="
'';

propagatedBuildInputs = [ six h2 ];

meta = {