python312Packages.yamale: 5.2.1 -> 6.0.0 (#371102)

This commit is contained in:
OTABI Tomoya
2025-01-19 21:26:59 +09:00
committed by GitHub
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "yamale";
version = "5.3.0";
version = "6.0.0";
pyproject = true;
disabled = pythonOlder "3.6";
@@ -20,17 +20,20 @@ buildPythonPackage rec {
owner = "23andMe";
repo = "yamale";
tag = version;
hash = "sha256-fYH+0OUJ9EnsAQh/VUOUVms1jwqpcLBj/c5uLj/1gVc=";
hash = "sha256-Ij9jhGMYHUStZ/xR5GUg/eF6YQdtIfpLU7g1pev6wJU=";
};
build-system = [ setuptools ];
dependencies = [
pyyaml
ruamel-yaml
];
nativeCheckInputs = [ pytestCheckHook ];
optional-dependencies = {
ruamel = [ ruamel-yaml ];
};
nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.ruamel;
pythonImportsCheck = [ "yamale" ];