python312Packages.yte: 1.5.4 -> 1.5.5 (#363891)

This commit is contained in:
Fabian Affolter 2024-12-11 08:11:49 +01:00 committed by GitHub
commit cdc04e6c63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,6 +3,7 @@
buildPythonPackage, buildPythonPackage,
dpath, dpath,
fetchFromGitHub, fetchFromGitHub,
numpy,
plac, plac,
poetry-core, poetry-core,
pytestCheckHook, pytestCheckHook,
@ -12,7 +13,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "yte"; pname = "yte";
version = "1.5.4"; version = "1.5.5";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -21,18 +22,21 @@ buildPythonPackage rec {
owner = "koesterlab"; owner = "koesterlab";
repo = "yte"; repo = "yte";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-Rm3EKxRZCdYErkyWK9+fF2W7C+v5/MXD/LkehmB6UNQ="; hash = "sha256-vHrYWdyWBqonCBWg1X+lTVlOHS30/yYqZ9sVK3/2n5o=";
}; };
nativeBuildInputs = [ poetry-core ]; build-system = [ poetry-core ];
propagatedBuildInputs = [ dependencies = [
dpath dpath
plac plac
pyyaml pyyaml
]; ];
nativeCheckInputs = [ pytestCheckHook ]; nativeCheckInputs = [
numpy
pytestCheckHook
];
pythonImportsCheck = [ "yte" ]; pythonImportsCheck = [ "yte" ];
@ -45,10 +49,10 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "YAML template engine with Python expressions"; description = "YAML template engine with Python expressions";
mainProgram = "yte";
homepage = "https://github.com/koesterlab/yte"; homepage = "https://github.com/koesterlab/yte";
changelog = "https://github.com/yte-template-engine/yte/blob/v${version}/CHANGELOG.md"; changelog = "https://github.com/yte-template-engine/yte/blob/v${version}/CHANGELOG.md";
license = with licenses; [ mit ]; license = licenses.mit;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "yte";
}; };
} }