summary refs log tree commit diff
path: root/pkgs/development/python-modules/hydra/default.nix
blob: 9087be43f95d181fb7e9d8602e14dd5f5f0a7ba3 (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
{ lib, buildPythonPackage, fetchFromGitHub, isPy27, pytest, omegaconf, pathlib2 }:

buildPythonPackage rec {
  pname = "hydra";
  version = "0.11.3";

  src = fetchFromGitHub {
    owner = "facebookresearch";
    repo = pname;
    rev = version;
    sha256 = "0plbls65qfrvvigza3qvy0pwjzgkz8ylpgb1im14k3b125ny41ad";
  };

  checkInputs = [ pytest ];
  propagatedBuildInputs = [ omegaconf ] ++ lib.optional isPy27 pathlib2;

  checkPhase = ''
    runHook preCheck
    pytest tests/
    runHook postCheck
  '';

  meta = with lib; {
    description = "A framework for configuring complex applications";
    homepage = https://hydra.cc;
    license = licenses.mit;
    maintainers = with maintainers; [ bcdarwin ];
  };
}