python310Packages.sqlalchemy-migrate: mark broken on python 3.11

This commit is contained in:
Sandro Jäckel 2023-01-21 21:08:53 +01:00
parent 43cb2bd0aa
commit bda05fe2a3
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,6 +1,19 @@
{ lib, stdenv, buildPythonPackage, fetchPypi, fetchpatch, python
, scripttest, pytz, pbr, tempita, decorator, sqlalchemy
, six, sqlparse, testrepository
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, fetchpatch
, python
, pythonAtLeast
, scripttest
, pytz
, pbr
, tempita
, decorator
, sqlalchemy
, six
, sqlparse
, testrepository
}:
buildPythonPackage rec {
@ -51,5 +64,8 @@ buildPythonPackage rec {
description = "Schema migration tools for SQLAlchemy";
license = licenses.asl20;
maintainers = teams.openstack.members ++ (with maintainers; [ makefu ]);
# using deprecated inspect.getargspec function
# https://bugs.launchpad.net/sqlalchemy-migrate/+bug/2003619
broken = pythonAtLeast "3.11";
};
}