Merge pull request #286861 from dotlambda/cmdstanpy-1.2.1

python311Packages.cmdstanpy: 1.2.0 -> 1.2.1

authored by Robert Schütz and committed by GitHub aef7c94e ad7dfa9a

+2 -9
+2 -9
pkgs/development/python-modules/cmdstanpy/default.nix
··· 2 , buildPythonPackage 3 , fetchFromGitHub 4 , substituteAll 5 - , fetchpatch 6 , cmdstan 7 , pythonRelaxDepsHook 8 , setuptools ··· 17 18 buildPythonPackage rec { 19 pname = "cmdstanpy"; 20 - version = "1.2.0"; 21 pyproject = true; 22 23 src = fetchFromGitHub { 24 owner = "stan-dev"; 25 repo = "cmdstanpy"; 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-1/X5JDvCx21qLNamNQXpg+w3d3DdSRlB+liIv2fThs4="; 28 }; 29 30 patches = [ 31 (substituteAll { 32 src = ./use-nix-cmdstan-path.patch; 33 cmdstan = "${cmdstan}/opt/cmdstan"; 34 - }) 35 - (fetchpatch { 36 - name = "stan-2.34-fix-parsing-of-unit_e-output-files.patch"; 37 - url = "https://github.com/stan-dev/cmdstanpy/commit/144d641739ccd1109055d13b5b96e4e76607305d.patch"; 38 - hash = "sha256-21hcbK3Xs7vGBNRs4hMfY5g7jIwEG49WYnsOxYJ6ccs="; 39 }) 40 ]; 41 ··· 77 ]; 78 79 disabledTests = [ 80 - "test_lp_good" # Fails for some reason 81 "test_serialization" # Pickle class mismatch errors 82 # These tests use the flag -DSTAN_THREADS which doesn't work in cmdstan (missing file) 83 "test_multi_proc_threads"
··· 2 , buildPythonPackage 3 , fetchFromGitHub 4 , substituteAll 5 , cmdstan 6 , pythonRelaxDepsHook 7 , setuptools ··· 16 17 buildPythonPackage rec { 18 pname = "cmdstanpy"; 19 + version = "1.2.1"; 20 pyproject = true; 21 22 src = fetchFromGitHub { 23 owner = "stan-dev"; 24 repo = "cmdstanpy"; 25 rev = "refs/tags/v${version}"; 26 + hash = "sha256-q+AFhWEzjYElJpiHT4h6YfZrwZJ56pv+8R+001vREyQ="; 27 }; 28 29 patches = [ 30 (substituteAll { 31 src = ./use-nix-cmdstan-path.patch; 32 cmdstan = "${cmdstan}/opt/cmdstan"; 33 }) 34 ]; 35 ··· 71 ]; 72 73 disabledTests = [ 74 "test_serialization" # Pickle class mismatch errors 75 # These tests use the flag -DSTAN_THREADS which doesn't work in cmdstan (missing file) 76 "test_multi_proc_threads"