python310Packages.sqlalchemy: 2.0.17 -> 2.0.18

https://github.com/sqlalchemy/sqlalchemy/releases/tag/rel_2_0_18
This commit is contained in:
Martin Weinelt 2023-07-06 00:11:26 +02:00
parent 35524da260
commit 446a8703c3
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,7 +1,6 @@
{ lib
, isPyPy
, pythonOlder
, fetchPypi
, fetchFromGitHub
, buildPythonPackage
@ -41,7 +40,7 @@
buildPythonPackage rec {
pname = "SQLAlchemy";
version = "2.0.17";
version = "2.0.18";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -50,7 +49,7 @@ buildPythonPackage rec {
owner = "sqlalchemy";
repo = "sqlalchemy";
rev = "refs/tags/rel_${lib.replaceStrings [ "." ] [ "_" ] version}";
hash = "sha256-thwPqyxhojyHZpo7LK6nl69Z1B1Z6+WR1dAdlVrgiaY=";
hash = "sha256-juZIFlmgwGFFhv+3DsMx6k1QRcGLQyTOwR5Hii8A68c=";
};
nativeBuildInputs =[
@ -143,6 +142,7 @@ buildPythonPackage rec {
disabledTestPaths = [
# typing correctness, not interesting
"test/ext/mypy"
"test/typing"
# slow and high memory usage, not interesting
"test/aaa_profiling"
];