From 727ae7488477f1a7b99db156d496f722baa10c08 Mon Sep 17 00:00:00 2001 From: Daniel Edgecumbe Date: Thu, 10 Dec 2020 14:51:07 +0000 Subject: [PATCH] python3Packages.aiomysql: fix patch to dependencies the build was failing as upstream changed their pinning --- pkgs/development/python-modules/aiomysql/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/aiomysql/default.nix b/pkgs/development/python-modules/aiomysql/default.nix index 4de8eaba3d8f..803f642406c8 100644 --- a/pkgs/development/python-modules/aiomysql/default.nix +++ b/pkgs/development/python-modules/aiomysql/default.nix @@ -28,7 +28,7 @@ buildPythonPackage rec { postPatch = '' substituteInPlace setup.py \ - --replace "PyMySQL>=0.9,<=0.9.2" "PyMySQL" + --replace "PyMySQL>=0.9,<=0.9.3" "PyMySQL" ''; checkPhase = ''