1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
71 lines
1.3 KiB
Nix
71 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
chardet,
|
|
fetchPypi,
|
|
jinja2,
|
|
jinja2-pluralize,
|
|
pluggy,
|
|
poetry-core,
|
|
pycodestyle,
|
|
pyflakes,
|
|
pygments,
|
|
pylint,
|
|
pytest-datadir,
|
|
pytest-mock,
|
|
pytestCheckHook,
|
|
tomli,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "diff-cover";
|
|
version = "9.7.2";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "diff_cover";
|
|
inherit version;
|
|
hash = "sha256-hyyCDS7L95xh1Sx9xwQZAV4KuSiViVZseR3ScPwMbjs=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
chardet
|
|
jinja2
|
|
jinja2-pluralize
|
|
pluggy
|
|
pygments
|
|
tomli
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pycodestyle
|
|
pyflakes
|
|
pylint
|
|
pytest-datadir
|
|
pytest-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# Tests check for flake8
|
|
"file_does_not_exist"
|
|
# Comparing console output doesn't work reliable
|
|
"console"
|
|
# Assertion failure
|
|
"test_html_with_external_css"
|
|
"test_style_defs"
|
|
];
|
|
|
|
pythonImportsCheck = [ "diff_cover" ];
|
|
|
|
meta = {
|
|
description = "Automatically find diff lines that need test coverage";
|
|
homepage = "https://github.com/Bachmann1234/diff-cover";
|
|
changelog = "https://github.com/Bachmann1234/diff_cover/releases/tag/v${version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ dzabraev ];
|
|
};
|
|
}
|