13 buildPythonPackage rec {
14 pname = "requirements-detector";
18 disabled = pythonOlder "3.7";
20 src = fetchFromGitHub {
21 owner = "landscapeio";
23 rev = "refs/tags/${version}";
24 hash = "sha256-qmrHFQRypBJOI1N6W/Dtc5ss9JGqoPhFlbqrLHcb6vc=";
31 propagatedBuildInputs = [
42 pythonImportsCheck = [
43 "requirements_detector"
47 description = "Python tool to find and list requirements of a Python project";
48 homepage = "https://github.com/landscapeio/requirements-detector";
49 changelog = "https://github.com/landscapeio/requirements-detector/releases/tag/${version}";
50 license = licenses.mit;
51 maintainers = with maintainers; [ kamadorueda ];