Merge pull request #333926 from fabaff/reorder-python-imports-bump
python312Packages.reorder-python-imports: 3.12.0 -> 3.13.0
This commit is contained in:
@@ -1,30 +1,30 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
classify-imports,
|
||||
fetchFromGitHub,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
aspy-refactor-imports,
|
||||
classify-imports,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "reorder-python-imports";
|
||||
version = "3.12.0";
|
||||
format = "setuptools";
|
||||
version = "3.13.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "asottile";
|
||||
repo = "reorder_python_imports";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-bKv9APbraR2359IzzkzXs4sEXrTvGK3J4LO3wFHOti0=";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-N0hWrrUeojlUDZx2Azs/y2kCaknQ62hHdp0J2ZXPElY=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aspy-refactor-imports
|
||||
classify-imports
|
||||
];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [ classify-imports ];
|
||||
|
||||
pythonImportsCheck = [ "reorder_python_imports" ];
|
||||
|
||||
@@ -36,9 +36,9 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool for automatically reordering python imports";
|
||||
mainProgram = "reorder-python-imports";
|
||||
homepage = "https://github.com/asottile/reorder_python_imports";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ gador ];
|
||||
mainProgram = "reorder-python-imports";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user