From 62fafe2329b07a000fcaac6f6be441fd27575b9c Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Fri, 18 Jun 2021 16:41:54 -0700 Subject: [PATCH] python3Packages.pytest-cov: fix build, add missing deps --- pkgs/development/python-modules/pytest-cov/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pytest-cov/default.nix b/pkgs/development/python-modules/pytest-cov/default.nix index 732b69ec67aa..87f5972a747d 100644 --- a/pkgs/development/python-modules/pytest-cov/default.nix +++ b/pkgs/development/python-modules/pytest-cov/default.nix @@ -3,6 +3,7 @@ , fetchPypi , pytest , coverage +, toml }: buildPythonPackage rec { @@ -16,7 +17,7 @@ buildPythonPackage rec { buildInputs = [ pytest ]; - propagatedBuildInputs = [ coverage ]; + propagatedBuildInputs = [ coverage toml ]; # xdist related tests fail with the following error # OSError: [Errno 13] Permission denied: 'py/_code'