diff --git a/pkgs/development/python-modules/werkzeug/default.nix b/pkgs/development/python-modules/werkzeug/default.nix index 483926ef30b5..cbf82ca7ca3d 100644 --- a/pkgs/development/python-modules/werkzeug/default.nix +++ b/pkgs/development/python-modules/werkzeug/default.nix @@ -14,19 +14,12 @@ buildPythonPackage rec { propagatedBuildInputs = [ itsdangerous ]; checkInputs = [ pytest requests hypothesis ]; - # Hi! New version of Werkzeug? Please double-check that this commit is - # inclucded, and then remove the following patch. - # https://github.com/pallets/werkzeug/commit/1cfdcf9824cb20e362979e8f7734012926492165 - patchPhase = '' - substituteInPlace "tests/test_serving.py" --replace "'python'" "sys.executable" - ''; - checkPhase = '' pytest ${stdenv.lib.optionalString stdenv.isDarwin "-k 'not test_get_machine_id'"} ''; meta = with stdenv.lib; { - homepage = http://werkzeug.pocoo.org/; + homepage = "https://palletsprojects.com/p/werkzeug/"; description = "A WSGI utility library for Python"; license = licenses.bsd3; };