Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
63 lines
1.2 KiB
Nix
63 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3Packages,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "refurb";
|
|
version = "2.2.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dosisod";
|
|
repo = "refurb";
|
|
tag = "v${version}";
|
|
hash = "sha256-Y401oUQd516Pyf+8sTrje5AoeWCSGKlXktnwyj/nTl8=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3Packages; [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
mypy
|
|
mypy-extensions
|
|
tomli
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = with python3Packages; [
|
|
attrs
|
|
click
|
|
colorama
|
|
iniconfig
|
|
mccabe
|
|
packaging
|
|
pathspec
|
|
platformdirs
|
|
pluggy
|
|
py
|
|
pyparsing
|
|
pytest-cov-stub
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
"test_checks" # broken because new mypy release added new checks
|
|
"test_mypy_consistence" # broken by new mypy release
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"refurb"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Tool for refurbishing and modernizing Python codebases";
|
|
mainProgram = "refurb";
|
|
homepage = "https://github.com/dosisod/refurb";
|
|
license = with licenses; [ gpl3Only ];
|
|
maintainers = with maintainers; [ knl ];
|
|
};
|
|
}
|