about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/hiyapyco/default.nix
blob: 79693747cfac3635023859f883aa63f0f4ffcd11 (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, pyyaml
, jinja2
}:

buildPythonPackage rec {
  pname = "hiyapyco";
  version = "0.4.16";

  src = fetchFromGitHub {
    owner = "zerwes";
    repo = pname;
    rev = "release-${version}";
    sha256 = "1ams9dp05yhgbg6255wrjgchl2mqg0s34d8b8prvql9lsh59s1fj";
  };

  propagatedBuildInputs = [
    pyyaml
    jinja2
  ];

  postPatch = ''
    # Should no longer be needed with the next release
    # https://github.com/zerwes/hiyapyco/pull/42
    substituteInPlace setup.py \
      --replace "Jinja2>1,<3" "Jinja2>1"
  '';

  checkPhase = ''
    set -e
    find test -name 'test_*.py' -exec python {} \;
  '';

  pythonImportsCheck = [ "hiyapyco" ];

  meta = with lib; {
    description = "Python library allowing hierarchical overlay of config files in YAML syntax";
    homepage = "https://github.com/zerwes/hiyapyco";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ veehaitch ];
  };
}