prefect: 3.2.14 -> 3.3.3 (#396343)

This commit is contained in:
Yt
2025-04-06 05:02:41 -04:00
committed by GitHub
+11 -2
View File
@@ -3,11 +3,12 @@
python3Packages,
fetchPypi,
nixosTests,
nix-update-script,
}:
python3Packages.buildPythonApplication rec {
pname = "prefect";
version = "3.2.14";
version = "3.3.3";
pyproject = true;
# Trying to install from source is challenging
@@ -16,7 +17,7 @@ python3Packages.buildPythonApplication rec {
# Source will be missing sdist, uv.lock, ui artefacts ...
src = fetchPypi {
inherit pname version;
hash = "sha256-DmPpiilxKp8uakcRJGaP1AD4AuOre1okk5h7bb5T2tE=";
hash = "sha256-4cJoOD7wdmwL+56VMh01JqzyC6817FnLrbIf0Ydaz/g=";
};
pythonRelaxDeps = [
@@ -163,6 +164,14 @@ python3Packages.buildPythonApplication rec {
passthru.tests = {
inherit (nixosTests) prefect;
updateScript = nix-update-script {
extraArgs = [
# avoid prereleases
"--version-regex"
''^\d+\.\d+\.\d+$''
];
};
};
# Tests are not included in the pypi source