python-alembic: add missing 'setuptools' to propagatedBuildInputs
As a side-effect of f7e28bf5d8181926e600a222cb70180519d09726, 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:
parent
85c5c3ab1e
commit
14854f20bb
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user