summary refs log tree commit diff
path: root/pkgs/development/python-modules/requirements-detector/default.nix
blob: a0f312389f1a85ceb8e6e3493af7a3cd10226a3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ buildPythonPackage
, fetchFromGitHub
, isPy27
, lib

# pythonPackages
, pytest
}:

buildPythonPackage rec {
  pname = "requirements-detector";
  version = "0.6";
  disabled = isPy27;

  src = fetchFromGitHub {
    owner = "yuvadm";
    repo = pname;
    rev = version;
    sha256 = "15s0n1lhkz0zwi33waqkkjipal3f7s45rxsj1bw89xpr4dj87qx5";
  };

  checkInputs = [
    pytest
  ];

  checkPhase = ''
    pytest
  '';

  meta = {
    description = "Python tool to find and list requirements of a Python project";
    homepage = "https://github.com/landscapeio/requirements-detector";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      kamadorueda
    ];
  };
}