4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
50 lines
1.5 KiB
Nix
50 lines
1.5 KiB
Nix
{ lib, stdenv, buildPythonPackage, fetchPypi, fetchpatch, python
|
|
, unittest2, scripttest, pytz, mock
|
|
, testtools, pbr, tempita, decorator, sqlalchemy
|
|
, six, sqlparse, testrepository
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "sqlalchemy-migrate";
|
|
version = "0.13.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1y0lcqii7b4vp7yh9dyxrl4i77hi8jkkw7d06mgdw2h458ljxh0b";
|
|
};
|
|
|
|
# See: https://review.openstack.org/#/c/608382/
|
|
patches = [ (fetchpatch {
|
|
url = "https://github.com/openstack/sqlalchemy-migrate/pull/18.patch";
|
|
sha256 = "1qyfq2m7w7xqf0r9bc2x42qcra4r9k9l9g1jy5j0fvlb6bvvjj07";
|
|
}) ];
|
|
|
|
checkInputs = [ unittest2 scripttest pytz mock testtools testrepository ];
|
|
propagatedBuildInputs = [ pbr tempita decorator sqlalchemy six sqlparse ];
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
prePatch = ''
|
|
sed -i -e /tempest-lib/d \
|
|
-e /testtools/d \
|
|
test-requirements.txt
|
|
'';
|
|
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
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/openstack/sqlalchemy-migrate";
|
|
description = "Schema migration tools for SQLAlchemy";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ makefu ];
|
|
};
|
|
}
|