depot/third_party/nixpkgs/pkgs/development/python-modules/requirements-detector/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

53 lines
1 KiB
Nix

{ lib
, astroid
, buildPythonPackage
, fetchFromGitHub
, packaging
, poetry-core
, semver
, pytestCheckHook
, pythonOlder
, toml
}:
buildPythonPackage rec {
pname = "requirements-detector";
version = "1.2.2";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "landscapeio";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-qmrHFQRypBJOI1N6W/Dtc5ss9JGqoPhFlbqrLHcb6vc=";
};
nativeBuildInputs = [
poetry-core
];
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";
homepage = "https://github.com/landscapeio/requirements-detector";
changelog = "https://github.com/landscapeio/requirements-detector/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ kamadorueda ];
};
}