3
0
Fork 0
forked from mirrors/nixpkgs

refurb: init at 1.7.0

This commit is contained in:
Nikola Knezevic 2022-09-28 12:10:20 +02:00
parent 381c3a564e
commit 7dafcde452
2 changed files with 60 additions and 0 deletions

View file

@ -0,0 +1,58 @@
{ lib
, fetchFromGitHub
, python3Packages
}:
python3Packages.buildPythonApplication rec {
pname = "refurb";
version = "1.7.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "dosisod";
repo = "refurb";
rev = "v${version}";
hash = "sha256-JA/kU+2cpNKY2umA3NXwsqbfOMv9t6I7GlMYhiA6GTg";
};
nativeBuildInputs = with python3Packages; [
poetry-core
];
propagatedBuildInputs = with python3Packages; [
mypy
mypy-extensions
tomli
typing-extensions
];
checkInputs = with python3Packages; [
attrs
click
colorama
iniconfig
mccabe
packaging
pathspec
platformdirs
pluggy
py
pyparsing
pytestCheckHook
];
postPatch = ''
sed -i "/^addopts/d" pyproject.toml
'';
pythonImportsCheck = [
"refurb"
];
meta = with lib; {
description = "A tool for refurbishing and modernizing Python codebases";
homepage = "https://github.com/dosisod/refurb";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ knl ];
};
}

View file

@ -16219,6 +16219,8 @@ with pkgs;
llvmPackages = llvmPackages_latest;
};
refurb = callPackage ../development/tools/refurb { };
srandrd = callPackage ../tools/X11/srandrd { };
srecord = callPackage ../development/tools/misc/srecord { };