From 3f717fe438d0ad3acdfea8bfefabc6589925aecf Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 2 Apr 2025 15:27:57 +0200 Subject: [PATCH] python313Packages.pytest-cov: 6.0.0 -> 6.1.0 Changelog: https://github.com/pytest-dev/pytest-cov/blob/v6.1.0/CHANGELOG.rst --- .../python-modules/pytest-cov/default.nix | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/pytest-cov/default.nix b/pkgs/development/python-modules/pytest-cov/default.nix index 08dc93c74ada..c214e758ad4a 100644 --- a/pkgs/development/python-modules/pytest-cov/default.nix +++ b/pkgs/development/python-modules/pytest-cov/default.nix @@ -4,23 +4,27 @@ fetchPypi, pytest, coverage, + setuptools, toml, tomli, }: buildPythonPackage rec { pname = "pytest-cov"; - version = "6.0.0"; - format = "setuptools"; + version = "6.1.0"; + pyproject = true; src = fetchPypi { - inherit pname version; - hash = "sha256-/eC1lcoki7ji128CC0ZfOxB8ljLmodFwXxeDTIncrcA="; + pname = "pytest_cov"; + inherit version; + hash = "sha256-7FXoKMZnVeW3SiG9fMA8MDqfkoOJwFY+ULpFSm2+cds="; }; + build-system = [ setuptools ]; + buildInputs = [ pytest ]; - propagatedBuildInputs = [ + dependencies = [ coverage toml tomli @@ -40,6 +44,8 @@ buildPythonPackage rec { meta = with lib; { description = "Plugin for coverage reporting with support for both centralised and distributed testing, including subprocesses and multiprocessing"; homepage = "https://github.com/pytest-dev/pytest-cov"; + changelog = "https://github.com/pytest-dev/pytest-cov/blob/v${version}/CHANGELOG.rst"; license = licenses.mit; + maintainers = [ ]; }; }