depot/third_party/nixpkgs/pkgs/development/python-modules/requirements-detector/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

60 lines
1.2 KiB
Nix

{ lib
, astroid
, buildPythonPackage
, fetchFromGitHub
, packaging
, poetry-core
, semver
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, toml
}:
buildPythonPackage rec {
pname = "requirements-detector";
version = "1.2.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "landscapeio";
repo = "requirements-detector";
rev = "refs/tags/${version}";
hash = "sha256-qmrHFQRypBJOI1N6W/Dtc5ss9JGqoPhFlbqrLHcb6vc=";
};
pythonRelaxDeps = [
"astroid"
];
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
propagatedBuildInputs = [
astroid
packaging
toml
semver
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"requirements_detector"
];
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 ];
};
}