pythonPackages.prefect: 3.7.0 -> 3.8.3

update prefect to latest stable
This commit is contained in:
happysalada
2026-08-21 06:29:23 -04:00
parent 1ff04dd8c1
commit c48666242e

View File

@@ -7,7 +7,6 @@
pytestCheckHook,
pythonAtLeast,
pythonOlder,
replaceVars,
writableTmpDirAsHomeHook,
writeShellScriptBin,
@@ -79,6 +78,7 @@
semver,
sniffio,
sqlalchemy,
starlette,
toml,
typing-extensions,
uv,
@@ -92,14 +92,17 @@
buildPythonPackage (finalAttrs: {
pname = "prefect";
version = "3.7.0";
version = "3.8.3";
pyproject = true;
# keeps list elements containing spaces intact, which disabledTests below needs
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "PrefectHQ";
repo = "prefect";
tag = finalAttrs.version;
hash = "sha256-AfiXH9u6W6UpE8hepNzPGIm1cxC+5RonhtBYWMu2IaQ=";
hash = "sha256-C20gFzsswVOVfJiz2UcDamUSSMbvm+KVIM115ZAzEyM=";
};
postPatch = ''
@@ -115,9 +118,11 @@ buildPythonPackage (finalAttrs: {
'__development_base_path__: pathlib.Path = pathlib.Path("${finalAttrs.src}")'
'';
# versioningit: NotVCSError: Git not installed; assuming this isn't a Git repository
nativeBuildInputs = [
# versioningit: NotVCSError: Git not installed; assuming this isn't a Git repository
(writeShellScriptBin "git" "false")
# prefect wants to create ~/.prefect on import, which pythonImportsCheck triggers
writableTmpDirAsHomeHook
];
build-system = [
@@ -177,6 +182,7 @@ buildPythonPackage (finalAttrs: {
ruamel-yaml-clib
semver
sniffio
starlette
toml
typing-extensions
uvicorn
@@ -258,12 +264,15 @@ buildPythonPackage (finalAttrs: {
];
};
passthru.tests = {
inherit (nixosTests) prefect;
passthru = {
tests = {
inherit (nixosTests) prefect;
};
# Upstream publishes every prerelease (3.8.4.dev1, …) as a GitHub release,
# so restrict the updater to plain threecomponent stable tags.
updateScript = nix-update-script {
extraArgs = [
# avoid prereleases
"--version-regex"
"^(\\d+\\.\\d+\\.\\d+)$"
];
@@ -271,6 +280,7 @@ buildPythonPackage (finalAttrs: {
};
# FIXME: build killed at ~30%
doCheck = false;
nativeCheckInputs = [
pytestCheckHook
@@ -295,6 +305,7 @@ buildPythonPackage (finalAttrs: {
meta = {
description = "Workflow orchestration framework for building resilient data pipelines in Python";
homepage = "https://github.com/PrefectHQ/prefect";
changelog = "https://github.com/PrefectHQ/prefect/releases/tag/${finalAttrs.version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
happysalada