about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-cov
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-06-18 16:41:54 -0700
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-06-22 13:42:45 +0200
commit62fafe2329b07a000fcaac6f6be441fd27575b9c (patch)
treec1576a32eab9ad00372ad56121057ad43d8f2b6b /pkgs/development/python-modules/pytest-cov
parent1603996fa052d38fc21ea84e37f4e30d9ee5b5c7 (diff)
python3Packages.pytest-cov: fix build, add missing deps
Diffstat (limited to 'pkgs/development/python-modules/pytest-cov')
-rw-r--r--pkgs/development/python-modules/pytest-cov/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pytest-cov/default.nix b/pkgs/development/python-modules/pytest-cov/default.nix
index 732b69ec67aa4..87f5972a747dc 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'