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

Merge pull request #311679 from fabaff/requirements-detector-broken

python312Packages.requirements-detector: mark as broken 
parents 0eae78d9 5f6fe961
Loading
Loading
Loading
Loading
+5 −9
Original line number Diff line number Diff line
@@ -7,7 +7,6 @@
, semver
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, toml
}:

@@ -25,16 +24,11 @@ buildPythonPackage rec {
    hash = "sha256-qmrHFQRypBJOI1N6W/Dtc5ss9JGqoPhFlbqrLHcb6vc=";
  };

  pythonRelaxDeps = [
    "astroid"
  ];

  nativeBuildInputs = [
  build-system = [
    poetry-core
    pythonRelaxDepsHook
  ];

  propagatedBuildInputs = [
  dependencies = [
    astroid
    packaging
    toml
@@ -51,10 +45,12 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Python tool to find and list requirements of a Python project";
    mainProgram = "detect-requirements";
    homepage = "https://github.com/landscapeio/requirements-detector";
    changelog = "https://github.com/landscapeio/requirements-detector/releases/tag/${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ kamadorueda ];
    mainProgram = "detect-requirements";
    # https://github.com/landscapeio/requirements-detector/issues/48
    broken = versionAtLeast astroid.version "3";
  };
}