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

python3Packages.findimports: 2.6.0 -> 2.7.0 (#463524)

parents 2ac8b8ee e5fa6c67
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -3,22 +3,19 @@
  buildPythonPackage,
  fetchFromGitHub,
  python,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
  pname = "findimports";
  version = "2.6.0";
  version = "2.7.0";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "mgedmin";
    repo = "findimports";
    tag = version;
    hash = "sha256-2hhonlv7FF4s+wDOsBGnLsMxJEXlMlNbLEkI8HptyOI=";
    hash = "sha256-ztbf9F1tz5EhqSkE8W6i7ihJYJTymKQdXI+K/G7DbHM=";
  };

  build-system = [ setuptools ];
@@ -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