python-alembic: add missing 'setuptools' to propagatedBuildInputs
As a side-effect of f7e28bf5d8, the build
no longer propagated 'setuptools', which is a run-time dependency. See
https://github.com/NixOS/nixpkgs/pull/68314 for further details.
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi
|
{ stdenv, buildPythonPackage, fetchPypi
|
||||||
, pytest, pytestcov, mock, coverage
|
, pytest, pytestcov, mock, coverage, setuptools
|
||||||
, Mako, sqlalchemy, python-editor, dateutil
|
, Mako, sqlalchemy, python-editor, dateutil
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@@ -13,7 +13,7 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pytest pytestcov mock coverage ];
|
buildInputs = [ pytest pytestcov mock coverage ];
|
||||||
propagatedBuildInputs = [ Mako sqlalchemy python-editor dateutil ];
|
propagatedBuildInputs = [ Mako sqlalchemy python-editor dateutil setuptools ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://bitbucket.org/zzzeek/alembic;
|
homepage = https://bitbucket.org/zzzeek/alembic;
|
||||||
|
|||||||
Reference in New Issue
Block a user