Unverified Commit 611aeb93 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

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

parents c2209369 f3e37c6b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
  nativeBuildInputs =
    with python3Packages;
    [
      setuptools
      sphinx
      sphinxcontrib-jinjadomain
      sphinx-rtd-theme
+2 −8
Original line number Diff line number Diff line
@@ -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 ];