mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
python-SQLAlchemy: test suite dependencies don't need to propagate
This commit is contained in:
parent
0c32585e67
commit
ea0c877858
@ -11866,7 +11866,7 @@ let
|
||||
preConfigure = optionalString isPy3k ''
|
||||
python3 sa2to3.py --no-diffs -w lib test examples
|
||||
'';
|
||||
propagatedBuildInputs = [self.pysqlite];
|
||||
buildInputs = [self.pysqlite];
|
||||
};
|
||||
|
||||
sqlalchemy8 = self.sqlalchemy9.override rec {
|
||||
@ -11881,7 +11881,7 @@ let
|
||||
preConfigure = optionalString isPy3k ''
|
||||
python3 sa2to3.py --no-diffs -w lib test examples
|
||||
'';
|
||||
propagatedBuildInputs = [self.pysqlite];
|
||||
buildInputs = [self.pysqlite];
|
||||
};
|
||||
|
||||
sqlalchemy9 = buildPythonPackage rec {
|
||||
@ -11896,7 +11896,7 @@ let
|
||||
|
||||
buildInputs = with self; [ nose mock pysqlite ];
|
||||
|
||||
propagatedBuildInputs = with self; [ modules.sqlite3 pysqlite ];
|
||||
propagatedBuildInputs = with self; [ modules.sqlite3 ];
|
||||
|
||||
checkPhase = ''
|
||||
${python.executable} sqla_nose.py
|
||||
|
Loading…
Reference in New Issue
Block a user