about summary refs log tree commit diff
path: root/pkgs/development/python-modules/mergedb/default.nix
blob: c9b92ba75df0bb543e16864f2fc326e265dca697 (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
39
40
41
42
43
44
45
46
{
  lib,
  buildPythonPackage,
  colorama,
  fetchPypi,
  jinja2,
  pytestCheckHook,
  pythonOlder,
  pyyaml,
  setuptools,
  setuptools-scm,
}:

buildPythonPackage rec {
  pname = "mergedb";
  version = "0.1.1";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "2034c18dca23456c5b166b63d94300bcd8ec9f386e6cd639c2f66e141c0313f9";
  };

  nativeBuildInputs = [ setuptools-scm ];

  propagatedBuildInputs = [
    pyyaml
    colorama
    jinja2
    setuptools
  ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "mergedb" ];

  meta = with lib; {
    description = "A tool/library for deep merging YAML files";
    mainProgram = "mergedb";
    homepage = "https://github.com/graysonhead/mergedb";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ graysonhead ];
  };
}