python3Packages.pymc: 5.28.5 -> 6.0.0

Diff: https://github.com/pymc-devs/pymc/compare/v5.28.5...v6.0.0

Changelog: https://github.com/pymc-devs/pymc/releases/tag/v6.0.0
This commit is contained in:
Gaetan Lepage
2026-05-13 10:46:07 +00:00
parent 06649792db
commit f87cee814a
@@ -2,7 +2,6 @@
lib,
buildPythonPackage,
fetchFromGitHub,
writableTmpDirAsHomeHook,
# build-system
setuptools,
@@ -23,7 +22,7 @@
buildPythonPackage (finalAttrs: {
pname = "pymc";
version = "5.28.5";
version = "6.0.0";
pyproject = true;
__structuredAttrs = true;
@@ -31,7 +30,7 @@ buildPythonPackage (finalAttrs: {
owner = "pymc-devs";
repo = "pymc";
tag = "v${finalAttrs.version}";
hash = "sha256-neySWgFxnebW9v0Fa6+ZaxQeFQ0v6wpRvQrBj0zOHJs=";
hash = "sha256-djioOgEtfKxXcbxYJGjPjCQOxcXi54xXNowJJhUWjE4=";
};
build-system = [
@@ -52,13 +51,6 @@ buildPythonPackage (finalAttrs: {
typing-extensions
];
nativeBuildInputs = [
# Arviz (imported by pymc) wants to write a stamp file to the homedir at import time.
# Without $HOME being writable, `pythonImportsCheck` fails.
# https://github.com/arviz-devs/arviz/commit/4db612908f588d89bb5bfb6b83a08ada3d54fd02
writableTmpDirAsHomeHook
];
# The test suite is computationally intensive and test failures are not
# indicative for package usability hence tests are disabled by default.
doCheck = false;