From 2804d0cd6c76c2d3ae0086c420e62087619eb37c Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 1 Jan 2026 23:15:51 +0000 Subject: [PATCH] python3Packages.hyperpyyaml: 1.2.2 -> 1.2.3 Diff: https://github.com/speechbrain/hyperpyyaml/compare/v1.2.2...v1.2.3 Changelog: https://github.com/speechbrain/HyperPyYAML/releases/tag/v1.2.3 --- .../python-modules/hyperpyyaml/default.nix | 21 ++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/hyperpyyaml/default.nix b/pkgs/development/python-modules/hyperpyyaml/default.nix index c09d10e7dc7c..68c77bf378d7 100644 --- a/pkgs/development/python-modules/hyperpyyaml/default.nix +++ b/pkgs/development/python-modules/hyperpyyaml/default.nix @@ -2,24 +2,35 @@ lib, buildPythonPackage, fetchFromGitHub, + + # build-system + setuptools, + + # dependencies pyyaml, ruamel-yaml, + + # tests pytestCheckHook, }: buildPythonPackage rec { pname = "hyperpyyaml"; - version = "1.2.2"; - format = "setuptools"; + version = "1.2.3"; + pyproject = true; src = fetchFromGitHub { owner = "speechbrain"; repo = "hyperpyyaml"; tag = "v${version}"; - hash = "sha256-eA4/wXmqlqomfRbJNi7dkBRoxneCbCbURSPvASF2sgA="; + hash = "sha256-/7OrIR61zQYl2+RjiOOlaqUGWBieon5fe8sgmEvKowo="; }; - propagatedBuildInputs = [ + build-system = [ + setuptools + ]; + + dependencies = [ pyyaml ruamel-yaml ]; @@ -31,7 +42,7 @@ buildPythonPackage rec { meta = { description = "Extensions to YAML syntax for better python interaction"; homepage = "https://github.com/speechbrain/HyperPyYAML"; - changelog = "https://github.com/speechbrain/HyperPyYAML/releases/tag/v${version}"; + changelog = "https://github.com/speechbrain/HyperPyYAML/releases/tag/${src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ GaetanLepage ]; };