Unverified Commit c3227c53 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python312Packages.findimports: 2.5.0 -> 2.5.1 (#348865)

parents dbd4d215 a62f2a98
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@

buildPythonPackage rec {
  pname = "findimports";
  version = "2.5.0";
  version = "2.5.1";
  pyproject = true;

  disabled = pythonOlder "3.7";
@@ -18,10 +18,10 @@ buildPythonPackage rec {
    owner = "mgedmin";
    repo = "findimports";
    rev = "refs/tags/${version}";
    hash = "sha256-kHm0TiLe7zvUnU6+MR1M0xOt0gpMDJ5FJ5+HgY0LPeo=";
    hash = "sha256-0HD5n9kxlXB86w8zkti6MkVZxEgGRrXzM6f+g0H/jrs=";
  };

  nativeBuildInputs = [ setuptools ];
  build-system = [ setuptools ];

  pythonImportsCheck = [ "findimports" ];

@@ -36,7 +36,6 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Module for the analysis of Python import statements";
    mainProgram = "findimports";
    homepage = "https://github.com/mgedmin/findimports";
    changelog = "https://github.com/mgedmin/findimports/blob/${version}/CHANGES.rst";
    license = with licenses; [
@@ -44,5 +43,6 @@ buildPythonPackage rec {
      gpl3Only
    ];
    maintainers = with maintainers; [ fab ];
    mainProgram = "findimports";
  };
}