python312Packages.yangson: 1.5.6 -> 1.6.2 (#384569)

This commit is contained in:
Weijia Wang
2025-03-26 01:55:45 +01:00
committed by GitHub
2 changed files with 3 additions and 8 deletions
@@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs =
with python3Packages;
[
setuptools
sphinx
sphinxcontrib-jinjadomain
sphinx-rtd-theme
@@ -5,32 +5,26 @@
poetry-core,
elementpath,
pyyaml,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "yangson";
version = "1.5.6";
version = "1.6.2";
pyproject = true;
src = fetchFromGitHub {
owner = "CZ-NIC";
repo = "yangson";
tag = version;
hash = "sha256-/9MxCkcPGRNZkuwAAvlr7gtGcyxXtliski7bNtFhVBE=";
hash = "sha256-gGunbQVRV9cFRnwGDIaGi/NM75rtw5vYVz2PiPiZlQo=";
};
build-system = [ poetry-core ];
pythonRelaxDeps = [
"setuptools"
];
dependencies = [
elementpath
pyyaml
setuptools
];
nativeCheckInputs = [ pytestCheckHook ];