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

python313Packages.findimports: modernize

parent 0e93bdfd
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
  buildPythonPackage,
  fetchFromGitHub,
  python,
  pythonOlder,
  setuptools,
}:

@@ -12,8 +11,6 @@ buildPythonPackage rec {
  version = "2.7.0";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "mgedmin";
    repo = "findimports";
@@ -37,7 +34,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Module for the analysis of Python import statements";
    homepage = "https://github.com/mgedmin/findimports";
    changelog = "https://github.com/mgedmin/findimports/blob/${version}/CHANGES.rst";
    changelog = "https://github.com/mgedmin/findimports/blob/${src.tag}/CHANGES.rst";
    license = with licenses; [
      gpl2Only # or
      gpl3Only