mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-14 17:04:42 +00:00
86 lines
1.8 KiB
Nix
86 lines
1.8 KiB
Nix
{ stdenv
|
|
, lib
|
|
, antlr4
|
|
, antlr4-python3-runtime
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, importlib-resources
|
|
, jre_headless
|
|
, omegaconf
|
|
, packaging
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, substituteAll
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hydra-core";
|
|
version = "1.3.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "facebookresearch";
|
|
repo = "hydra";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-4FOh1Jr+LM8ffh/xcAqMqKudKbXb2DZdxU+czq2xwxs=";
|
|
};
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./antlr4.patch;
|
|
antlr_jar = "${antlr4.out}/share/java/antlr-${antlr4.version}-complete.jar";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
# We substitute the path to the jar with the one from our antlr4
|
|
# package, so this file becomes unused
|
|
rm -v build_helpers/bin/antlr*-complete.jar
|
|
|
|
sed -i 's/antlr4-python3-runtime==.*/antlr4-python3-runtime/' requirements/requirements.txt
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
jre_headless
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
antlr4-python3-runtime
|
|
omegaconf
|
|
packaging
|
|
] ++ lib.optionals (pythonOlder "3.9") [
|
|
importlib-resources
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
# Test environment setup broken under Nix for a few tests:
|
|
disabledTests = [
|
|
"test_bash_completion_with_dot_in_path"
|
|
"test_install_uninstall"
|
|
"test_config_search_path"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
"tests/test_hydra.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"hydra"
|
|
# See https://github.com/NixOS/nixpkgs/issues/208843
|
|
"hydra.version"
|
|
];
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.isDarwin;
|
|
description = "A framework for configuring complex applications";
|
|
homepage = "https://hydra.cc";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
};
|
|
}
|