Commit 89497ae7 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files
parent 34c3e4bf
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  pythonOlder,
  fetchFromGitHub,

  # build-system
@@ -24,16 +23,14 @@

buildPythonPackage rec {
  pname = "blackjax";
  version = "1.2.3";
  version = "1.2.4";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "blackjax-devs";
    repo = "blackjax";
    rev = "refs/tags/${version}";
    hash = "sha256-f1piE79TLVLtIe9/DaLhXss/ifhU719nEylyl70SVJc=";
    hash = "sha256-qaQBbRAKExRHr4Uhm5/Q1Ydon6ePsjG2PWbwSdR9QZM=";
  };

  build-system = [ setuptools-scm ];