summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/dparse2/default.nix
blob: d6ee8725415cf01f1bd59043ec950557dda4ba80 (plain)
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
39
40
41
42
43
44
45
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  toml,
  pyyaml,
  packvers,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "dparse2";
  version = "0.7.0";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "nexB";
    repo = "dparse2";
    tag = version;
    hash = "sha256-JUTL+SVf1RRIXQqwFR7MnExsgGseSiO0a5YzzcqdXHw=";
  };

  propagatedBuildInputs = [
    toml
    pyyaml
    packvers
  ];

  nativeCheckInputs = [ pytestCheckHook ];

  disabledTestPaths = [
    # Requires pipenv
    "tests/test_parse.py"
  ];

  pythonImportsCheck = [ "dparse2" ];

  meta = {
    description = "Module to parse Python dependency files";
    homepage = "https://github.com/nexB/dparse2";
    changelog = "https://github.com/nexB/dparse2/blob/${version}/CHANGELOG.rst";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}