Skip to content

Commit

Permalink
python3Packages.werkzeug: 2.0.3 -> 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt committed Apr 14, 2022
1 parent 904134e commit 7c557ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/werkzeug/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@

buildPythonPackage rec {
pname = "werkzeug";
version = "2.0.3";
version = "2.1.0";
format = "setuptools";

disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";

src = fetchPypi {
pname = "Werkzeug";
inherit version;
sha256 = "sha256-uGP4/wV8UiFktgZ8niiwQRYbS+W6TQ2s7qpQoWOCLTw=";
sha256 = "sha256-m1VGaj6Z4TsfBoamYRfTm9qFqZIWbgp5rt/PNYYyj3o=";
};

propagatedBuildInputs = lib.optionals (!stdenv.isDarwin) [
Expand Down

2 comments on commit 7c557ca

@samuela
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change broke sentry-sdk, wandb, and likely many others. See #169130 for example. Please run nixpkgs-review before merging in the future.

Please fix these issues, or revert this change. If I don't hear back, I'll go ahead and revert tomorrow.

Also, what PR was this associated with?

@mweinelt
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same reply as for flask. Can't be updated indepently.

Please sign in to comment.