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,
dpath,
fetchFromGitHub,
numpy,
plac,
poetry-core,
pytestCheckHook,
@ -12,7 +13,7 @@
buildPythonPackage rec {
pname = "yte";
version = "1.5.4";
version = "1.5.5";
pyproject = true;
disabled = pythonOlder "3.7";
@ -21,18 +22,21 @@ buildPythonPackage rec {
owner = "koesterlab";
repo = "yte";
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
plac
pyyaml
];
nativeCheckInputs = [ pytestCheckHook ];
nativeCheckInputs = [
numpy
pytestCheckHook
];
pythonImportsCheck = [ "yte" ];
@ -45,10 +49,10 @@ buildPythonPackage rec {
meta = with lib; {
description = "YAML template engine with Python expressions";
mainProgram = "yte";
homepage = "https://github.com/koesterlab/yte";
changelog = "https://github.com/yte-template-engine/yte/blob/v${version}/CHANGELOG.md";
license = with licenses; [ mit ];
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "yte";
};
}