Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
61 lines
1.2 KiB
Nix
61 lines
1.2 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3Packages
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "refurb";
|
|
version = "2.0.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dosisod";
|
|
repo = "refurb";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-6MchaqRKJPmvwiDyhCK4kFyIYl2B+2dGL8H8X2ES+VQ=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|