1 { lib, buildPythonPackage, fetchFromGitHub, pythonOlder
2 , pytest, pytestrunner, pyyaml, six, pathlib2, isPy27 }:
4 buildPythonPackage rec {
8 src = fetchFromGitHub {
12 sha256 = "1vpcdjlq54pm8xmkv2hqm2n1ysvz2a9iqgf55x0w6slrb4595cwb";
15 checkInputs = [ pytest ];
16 buildInputs = [ pytestrunner ];
17 propagatedBuildInputs = [ pyyaml six ] ++ lib.optional isPy27 pathlib2;
20 description = "A framework for configuring complex applications";
21 homepage = "https://github.com/omry/omegaconf";
22 license = licenses.free; # prior bsd license (1988)
23 maintainers = with maintainers; [ bcdarwin ];