about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/mergedb/default.nix
blob: 3c78026632ba50aaa02ef417de13dbee3fca8a12 (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
47
48
49
50
51
{ 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";
    homepage = "https://github.com/graysonhead/mergedb";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ graysonhead ];
  };
}