1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-21 00:49:27 +03:00
nixpkgs/pkgs/development/python-modules/coverage/default.nix
2024-06-24 12:14:50 +02:00

34 lines
620 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
mock,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "coverage";
version = "7.5.3";
pyproject = true;
# uses f strings
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
hash = "sha256-BK78pRkNHcelOkwaWn+FaIETBteo7iMcQvtpIVVxlE8=";
};
nativeBuildInputs = [ setuptools ];
# No tests in archive
doCheck = false;
nativeCheckInputs = [ mock ];
meta = {
description = "Code coverage measurement for python";
homepage = "https://coverage.readthedocs.io/";
license = lib.licenses.bsd3;
};
}