From 908fc4afe847d3937b3722e7d1b0c28aa1f93bd0 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Fri, 19 Nov 2021 10:31:51 -0800 Subject: [PATCH] python3Packages.alembic: 1.7.4 -> 1.7.5 --- pkgs/development/python-modules/alembic/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/alembic/default.nix b/pkgs/development/python-modules/alembic/default.nix index 957b82e14467..18698a0d68f2 100644 --- a/pkgs/development/python-modules/alembic/default.nix +++ b/pkgs/development/python-modules/alembic/default.nix @@ -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; {