nixpkgs/pkgs/development/python-modules/requirements-detector/default.nix
2022-05-20 23:08:24 +02:00

53 lines
940 B
Nix

{ lib
, astroid
, buildPythonPackage
, fetchFromGitHub
, packaging
, poetry-core
, poetry-semver
, pytestCheckHook
, pythonOlder
, toml
}:
buildPythonPackage rec {
pname = "requirements-detector";
version = "1.0.3";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "landscapeio";
repo = pname;
rev = version;
hash = "sha256-AEXCguf5Q9lU5ygFJUlbc1F637hkQ0wJybbRK7uhB9s=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
astroid
packaging
poetry-semver
toml
];
checkInputs = [
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";
license = licenses.mit;
maintainers = with maintainers; [ kamadorueda ];
};
}