2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchPypi, fetchpatch, python
|
2022-01-14 13:26:05 +01:00
|
|
|
, scripttest, pytz, pbr, tempita, decorator, sqlalchemy
|
2017-12-13 23:33:23 +01:00
|
|
|
, six, sqlparse, testrepository
|
2017-05-03 22:30:37 +02:00
|
|
|
}:
|
2022-01-14 13:26:05 +01:00
|
|
|
|
2017-05-03 22:30:37 +02:00
|
|
|
buildPythonPackage rec {
|
2017-05-27 11:25:35 +02:00
|
|
|
pname = "sqlalchemy-migrate";
|
2021-01-02 23:48:02 -05:00
|
|
|
version = "0.13.0";
|
2017-05-03 22:30:37 +02:00
|
|
|
|
2017-12-13 23:33:23 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-02 23:48:02 -05:00
|
|
|
sha256 = "1y0lcqii7b4vp7yh9dyxrl4i77hi8jkkw7d06mgdw2h458ljxh0b";
|
2017-05-03 22:30:37 +02:00
|
|
|
};
|
|
|
|
|
2018-09-02 21:56:53 -04:00
|
|
|
# See: https://review.openstack.org/#/c/608382/
|
2022-01-14 13:26:05 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/openstack/sqlalchemy-migrate/pull/18.patch";
|
|
|
|
sha256 = "1qyfq2m7w7xqf0r9bc2x42qcra4r9k9l9g1jy5j0fvlb6bvvjj07";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace test-requirements.txt \
|
|
|
|
--replace "ibm_db_sa>=0.3.0;python_version<'3.0'" "" \
|
|
|
|
--replace "ibm-db-sa-py3;python_version>='3.0'" "" \
|
|
|
|
--replace "tempest-lib>=0.1.0" "" \
|
|
|
|
--replace "testtools>=0.9.34,<0.9.36" "" \
|
|
|
|
--replace "pylint" ""
|
|
|
|
'';
|
2018-09-02 21:56:53 -04:00
|
|
|
|
2022-01-14 13:26:05 +01:00
|
|
|
checkInputs = [ scripttest pytz testrepository ];
|
2017-05-03 22:30:37 +02:00
|
|
|
propagatedBuildInputs = [ pbr tempita decorator sqlalchemy six sqlparse ];
|
|
|
|
|
2019-04-22 22:49:34 -04:00
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
2017-05-03 22:30:37 +02:00
|
|
|
checkPhase = ''
|
|
|
|
export PATH=$PATH:$out/bin
|
|
|
|
echo sqlite:///__tmp__ > test_db.cfg
|
|
|
|
# depends on ibm_db_sa
|
|
|
|
rm migrate/tests/changeset/databases/test_ibmdb2.py
|
|
|
|
# wants very old testtools
|
|
|
|
rm migrate/tests/versioning/test_schema.py
|
|
|
|
# transient failures on py27
|
|
|
|
substituteInPlace migrate/tests/versioning/test_util.py --replace "test_load_model" "noop"
|
|
|
|
${python.interpreter} setup.py test
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2022-01-14 13:26:05 +01:00
|
|
|
homepage = "https://opendev.org/x/sqlalchemy-migrate";
|
2017-05-03 22:30:37 +02:00
|
|
|
description = "Schema migration tools for SQLAlchemy";
|
|
|
|
license = licenses.asl20;
|
2022-01-14 13:26:05 +01:00
|
|
|
maintainers = teams.openstack.members ++ (with maintainers; [ makefu ]);
|
2017-05-03 22:30:37 +02:00
|
|
|
};
|
|
|
|
}
|