We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 597a131 commit e963732Copy full SHA for e963732
pkgs/development/python-modules/holoviews/default.nix
@@ -18,7 +18,7 @@
18
19
# tests
20
pytestCheckHook,
21
- pytest-cov,
+ pytest-asyncio,
22
flaky,
23
}:
24
@@ -34,6 +34,11 @@ buildPythonPackage rec {
34
hash = "sha256-KdGDBF+vo9hG3tqZnZaHuZuKvcGowGcS5Ur6V2uwKz4=";
35
};
36
37
+ postPatch = ''
38
+ substituteInPlace pyproject.toml \
39
+ --replace '"ignore:No data was collected:coverage.exceptions.CoverageWarning",' ""
40
+ '';
41
+
42
build-system = [
43
hatch-vcs
44
hatchling
@@ -50,7 +55,7 @@ buildPythonPackage rec {
50
55
51
56
nativeCheckInputs = [
52
57
pytestCheckHook
53
- pytest-cov
58
+ pytest-asyncio
54
59
flaky
60
];
61
0 commit comments