16 buildPythonPackage rec {
21 disabled = pythonOlder "3.9";
23 src = fetchFromGitHub {
24 owner = "blackjax-devs";
26 rev = "refs/tags/${version}";
27 hash = "sha256-6+ElY1F8oRCtWT4a/LIG6hYMthlq5mDx2baKAc6zIns=";
30 nativeBuildInputs = [ setuptools-scm ];
32 propagatedBuildInputs = [
45 disabledTestPaths = [ "tests/test_benchmarks.py" ];
48 "test_adaptive_tempered_smc"
51 pythonImportsCheck = [
56 homepage = "https://blackjax-devs.github.io/blackjax";
57 description = "Sampling library designed for ease of use, speed and modularity";
58 changelog = "https://github.com/blackjax-devs/blackjax/releases/tag/${version}";
59 license = licenses.asl20;
60 maintainers = with maintainers; [ bcdarwin ];