summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2025-06-02 05:56:25 +0200
committerPeder Bergebakken Sundt <pbsds@hotmail.com>2025-06-02 05:56:25 +0200
commitea367faf46d7ad2a483a6739fa4a6cd60f8a4e7f (patch)
treeefb8c2557ba6d736768cedc1a097555a82e1f9db /pkgs/development/python-modules
parent998537308cbb9f29483ac8b833040460baa8a7bd (diff)
python313Packages.flufl-i18n: migrate to pytest-cov-stub
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/flufl/i18n.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/flufl/i18n.nix b/pkgs/development/python-modules/flufl/i18n.nix
index 3a7295e0a087..acfa292cc821 100644
--- a/pkgs/development/python-modules/flufl/i18n.nix
+++ b/pkgs/development/python-modules/flufl/i18n.nix
@@ -6,6 +6,7 @@
atpublic,
pdm-pep517,
pytestCheckHook,
+ pytest-cov-stub,
sybil,
}:
@@ -22,11 +23,6 @@ buildPythonPackage rec {
hash = "sha256-wKz6aggkJ9YBJ+o75XjC4Ddnn+Zi9hlYDnliwTc7DNs=";
};
- postPatch = ''
- substituteInPlace pyproject.toml \
- --replace "--cov=flufl --cov-report=term --cov-report=xml" ""
- '';
-
nativeBuildInputs = [ pdm-pep517 ];
propagatedBuildInputs = [ atpublic ];
@@ -35,6 +31,7 @@ buildPythonPackage rec {
nativeCheckInputs = [
pytestCheckHook
+ pytest-cov-stub
sybil
];