python312Packages.nutpie: 0.13.2 -> 0.13.4 (#384393)

Nick Cao 4073595d eeddff50

Changed files
+8 -16
pkgs
development
python-modules
nutpie
+8 -16
pkgs/development/python-modules/nutpie/default.nix
···
{
lib,
-
stdenv,
buildPythonPackage,
fetchFromGitHub,
rustPlatform,
···
cargo,
rustc,
-
# buildInputs
-
libiconv,
-
# dependencies
arviz,
pandas,
···
pymc,
pytestCheckHook,
setuptools,
+
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "nutpie";
-
version = "0.13.2";
+
version = "0.13.4";
pyproject = true;
src = fetchFromGitHub {
owner = "pymc-devs";
repo = "nutpie";
tag = "v${version}";
-
hash = "sha256-XyUMCnHm5V7oFaf3W+nGpcHfq1ZFppeGMIMCU5OB87s=";
+
hash = "sha256-BpKt/EWBefCQUGDxyqF6Xjrj/HUvY4M26gk79R/CyZo=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit src;
name = "${pname}-${version}";
-
hash = "sha256-mLoMbIy3Chmby+c6j3dg+bQvIHuhDgt3ZzPIXB3WxuE=";
+
hash = "sha256-d0Qk01YwosHlOy3yb/2PV5Op1Wz+yB5ROVbUWfHooEk=";
};
build-system = [
···
rustc
];
-
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
-
libiconv
+
pythonRelaxDeps = [
+
"xarray"
];
dependencies = [
···
pymc
pytestCheckHook
setuptools
+
writableTmpDirAsHomeHook
];
disabledTestPaths = [
# Require unpackaged bridgestan
"tests/test_stan.py"
-
-
# KeyError: "duplicate registration for <class 'numba.core.types.misc.SliceType'>"
-
"tests/test_pymc.py"
];
-
# Currently, no test are working...
-
doCheck = false;
-
meta = {
description = "Python wrapper for nuts-rs";
homepage = "https://github.com/pymc-devs/nutpie";
-
changelog = "https://github.com/pymc-devs/nutpie/blob/${src.rev}/CHANGELOG.md";
+
changelog = "https://github.com/pymc-devs/nutpie/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ GaetanLepage ];
};