Fabian Affolter
2024-12-10 13:21:30 +01:00
parent de962b9056
commit a89ad69cd9
@@ -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";
};
}