mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
Merge pull request #311679 from fabaff/requirements-detector-broken
python312Packages.requirements-detector: mark as broken
This commit is contained in:
commit
a01ee9db07
1 changed files with 5 additions and 9 deletions
|
@ -7,7 +7,6 @@
|
||||||
, semver
|
, semver
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, pythonRelaxDepsHook
|
|
||||||
, toml
|
, toml
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -25,16 +24,11 @@ buildPythonPackage rec {
|
||||||
hash = "sha256-qmrHFQRypBJOI1N6W/Dtc5ss9JGqoPhFlbqrLHcb6vc=";
|
hash = "sha256-qmrHFQRypBJOI1N6W/Dtc5ss9JGqoPhFlbqrLHcb6vc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
build-system = [
|
||||||
"astroid"
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
dependencies = [
|
||||||
astroid
|
astroid
|
||||||
packaging
|
packaging
|
||||||
toml
|
toml
|
||||||
|
@ -51,10 +45,12 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python tool to find and list requirements of a Python project";
|
description = "Python tool to find and list requirements of a Python project";
|
||||||
mainProgram = "detect-requirements";
|
|
||||||
homepage = "https://github.com/landscapeio/requirements-detector";
|
homepage = "https://github.com/landscapeio/requirements-detector";
|
||||||
changelog = "https://github.com/landscapeio/requirements-detector/releases/tag/${version}";
|
changelog = "https://github.com/landscapeio/requirements-detector/releases/tag/${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ kamadorueda ];
|
maintainers = with maintainers; [ kamadorueda ];
|
||||||
|
mainProgram = "detect-requirements";
|
||||||
|
# https://github.com/landscapeio/requirements-detector/issues/48
|
||||||
|
broken = versionAtLeast astroid.version "3";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue