python3Packages.alembic: 1.7.4 -> 1.7.5

This commit is contained in:
Jonathan Ringer 2021-11-19 10:31:51 -08:00 committed by Jonathan Ringer
parent 15060ba400
commit 908fc4afe8

View file

@ -9,19 +9,18 @@
, importlib-resources
, pytest-xdist
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "alembic";
version = "1.7.4";
version = "1.7.5";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "9d33f3ff1488c4bfab1e1a6dfebbf085e8a8e1a3e047a43ad29ad1f67f012a1d";
sha256 = "sha256-fDKGlKLmjwPulx5jw72IWEZHA3OltTLPLJ8WAcQTsVM=";
};
propagatedBuildInputs = [
@ -44,7 +43,7 @@ buildPythonPackage rec {
];
pytestFlagsArray = [
"--numprocesses" "auto"
"--numprocesses" "$NIX_BUILD_CORES"
];
meta = with lib; {