From 38f1f74324df7cf02eefce58360662b00470afa3 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer <jonringer117@gmail.com> Date: Sat, 21 Dec 2019 14:34:15 -0800 Subject: [PATCH] python3Packages.pytest-services: add missing zc_lockfile dependency --- pkgs/development/python-modules/pytest-services/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/pytest-services/default.nix b/pkgs/development/python-modules/pytest-services/default.nix index 507cb4467bc..c940dcadc7e 100644 --- a/pkgs/development/python-modules/pytest-services/default.nix +++ b/pkgs/development/python-modules/pytest-services/default.nix @@ -6,6 +6,7 @@ , psutil , pytest , subprocess32 +, zc_lockfile }: buildPythonPackage rec { @@ -21,6 +22,7 @@ buildPythonPackage rec { requests psutil pytest + zc_lockfile ] ++ lib.optional (!isPy3k) subprocess32; # no tests in PyPI tarball