From 55022cbea741f9a17dc08f18da0bbb33023e64ea Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 19 Apr 2022 12:45:59 +0200 Subject: [PATCH] python3Packages.ormar: update substituteInPlace --- pkgs/development/python-modules/ormar/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/ormar/default.nix b/pkgs/development/python-modules/ormar/default.nix index 5546f58b262..8678e512fdf 100644 --- a/pkgs/development/python-modules/ormar/default.nix +++ b/pkgs/development/python-modules/ormar/default.nix @@ -70,8 +70,8 @@ buildPythonPackage rec { postPatch = '' substituteInPlace pyproject.toml \ - --replace 'SQLAlchemy = ">=1.3.18,<=1.4.29"' 'SQLAlchemy = ">=1.3.18"' \ - --replace 'databases = ">=0.3.2,!=0.5.0,!=0.5.1,!=0.5.2,!=0.5.3,<0.5.5"' 'databases = ">=0.5.5"' + --replace 'SQLAlchemy = ">=1.3.18,<=1.4.31"' 'SQLAlchemy = ">=1.3.18"' \ + --replace 'databases = ">=0.3.2,!=0.5.0,!=0.5.1,!=0.5.2,!=0.5.3,<=0.5.5"' 'databases = ">=0.5.5"' ''; disabledTests = [ @@ -84,8 +84,8 @@ buildPythonPackage rec { ]; meta = with lib; { - homepage = "https://github.com/collerek/ormar"; description = "Async ORM with fastapi in mind and pydantic validation"; + homepage = "https://github.com/collerek/ormar"; license = licenses.mit; maintainers = with maintainers; [ andreasfelix ]; };