Files
nixpkgs/pkgs/development/python-modules/omegaconf/default.nix
T
Robert Schütz 1a04744f74 treewide: remove superfluous disabled
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:

    pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
    for f in $(find -name '*.nix'); do
        grep -q "$pattern" "$f" || continue
        sed -i "/$pattern/d" "$f"
        if [ $(grep -c pythonOlder "$f") == 1 ]; then
            sed -i '/^\s*pythonOlder,\s*$/d' "$f"
        fi
        nixfmt "$f"
    done
2026-01-11 09:34:20 -08:00

89 lines
1.9 KiB
Nix

{
lib,
antlr4,
antlr4-python3-runtime,
attrs,
buildPythonPackage,
fetchFromGitHub,
setuptools,
jre_minimal,
pydevd,
pytest-mock,
pytest7CheckHook,
pythonAtLeast,
pyyaml,
replaceVars,
}:
buildPythonPackage rec {
pname = "omegaconf";
version = "2.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "omry";
repo = "omegaconf";
tag = "v${version}";
hash = "sha256-Qxa4uIiX5TAyQ5rFkizdev60S4iVAJ08ES6FpNqf8zI=";
};
patches = [
(replaceVars ./antlr4.patch {
antlr_jar = "${antlr4.out}/share/java/antlr-${antlr4.version}-complete.jar";
})
# https://github.com/omry/omegaconf/pull/1137
./0000-add-support-for-dataclasses_missing_type.patch
];
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
'';
build-system = [ setuptools ];
nativeBuildInputs = [ jre_minimal ];
dependencies = [
antlr4-python3-runtime
pyyaml
];
nativeCheckInputs = [
attrs
pydevd
pytest-mock
pytest7CheckHook
];
pythonImportsCheck = [ "omegaconf" ];
pytestFlags = [
"-Wignore::DeprecationWarning"
"-Wignore::UserWarning"
];
disabledTests = [
# assert (1560791320562868035 == 1560791320562868035) == False
"test_eq"
]
++ lib.optionals (pythonAtLeast "3.13") [
# pathlib._local.Path != pathlib.Path type check mismatch
"test_errors"
"test_to_yaml"
"test_type_str"
];
meta = {
description = "Framework for configuring complex applications";
homepage = "https://github.com/omry/omegaconf";
changelog = "https://github.com/omry/omegaconf/blob/v${version}/NEWS.md";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}