My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/diff-cover/default.nix

69 lines
1.2 KiB

{ lib
, buildPythonPackage
, chardet
, fetchPypi
, jinja2
, jinja2_pluralize
, pluggy
, pycodestyle
, pyflakes
, pygments
, pylint
, pytest-datadir
, pytest-mock
, pytestCheckHook
, pythonOlder
, tomli
}:
buildPythonPackage rec {
pname = "diff-cover";
version = "6.5.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
pname = "diff_cover";
inherit version;
sha256 = "sha256-N2O0/C75EGO6crUCFGUiJLLQqfMVRNVQRZb1xKhHzXs=";
};
propagatedBuildInputs = [
chardet
jinja2
jinja2_pluralize
pluggy
pygments
tomli
];
checkInputs = [
pycodestyle
pyflakes
pylint
pytest-datadir
pytest-mock
pytestCheckHook
];
disabledTests = [
# Tests check for flake8
"file_does_not_exist"
# AssertionError: assert '.c { color:...
"test_style_defs"
# uses pytest.approx in a boolean context, which is unsupported since pytest7
"test_percent_covered"
];
pythonImportsCheck = [
"diff_cover"
];
meta = with lib; {
description = "Automatically find diff lines that need test coverage";
homepage = "https://github.com/Bachmann1234/diff-cover";
license = licenses.asl20;
maintainers = with maintainers; [ dzabraev ];
};
}