mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 02:53:55 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
{ lib
|
|
, antlr4
|
|
, antlr4-python3-runtime
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, jre_minimal
|
|
, pydevd
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pyyaml
|
|
, substituteAll
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "omegaconf";
|
|
version = "2.3.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "omry";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-Qxa4uIiX5TAyQ5rFkizdev60S4iVAJ08ES6FpNqf8zI=";
|
|
};
|
|
|
|
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/base.txt
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
jre_minimal
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
antlr4-python3-runtime
|
|
pyyaml
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pydevd
|
|
pytest-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"omegaconf"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Framework for configuring complex applications";
|
|
homepage = "https://github.com/omry/omegaconf";
|
|
changelog = "https://github.com/omry/omegaconf/blob/v${version}/NEWS.md";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
};
|
|
}
|