python313Packages.yte: 1.8.1 -> 1.9.0 (#420850)

This commit is contained in:
Fabian Affolter
2025-06-29 11:52:53 +02:00
committed by GitHub
@@ -1,19 +1,19 @@
{
lib,
argparse-dataclass,
buildPythonPackage,
dpath,
fetchFromGitHub,
numpy,
plac,
poetry-core,
pytestCheckHook,
pythonOlder,
pyyaml,
uv-build,
}:
buildPythonPackage rec {
pname = "yte";
version = "1.8.1";
version = "1.9.0";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -22,14 +22,14 @@ buildPythonPackage rec {
owner = "koesterlab";
repo = "yte";
tag = "v${version}";
hash = "sha256-0YIZd0qgtriyD+xCxJZENY7Z1fART3MS8pubnpysGRc=";
hash = "sha256-kA4fQg2vpgDuW0OZOqzA6lggJLtSiQo+3SCOp7hnt8M=";
};
build-system = [ poetry-core ];
build-system = [ uv-build ];
dependencies = [
dpath
plac
argparse-dataclass
pyyaml
];
@@ -40,8 +40,6 @@ buildPythonPackage rec {
pythonImportsCheck = [ "yte" ];
pytestFlagsArray = [ "tests.py" ];
preCheck = ''
# The CLI test need yte on the PATH
export PATH=$out/bin:$PATH