Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Sep 30, 2024
1 parent 0161117 commit 0bdb464
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/development/python-modules/bridgestan/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
}:

buildPythonPackage rec {
pname = "bridgestan";
version = "2.5.0";
pyproject = true;

src = fetchFromGitHub {
owner = "roualdes";
repo = "bridgestan";
rev = "v${version}";
hash = "sha256-e4EV1NyxXwoDTNKodLTpTnDop+ujunj9xSPTT7/zwWM=";
};

meta = {
description = "BridgeStan provides efficient in-memory access through Python, Julia, and R to the methods of a Stan model";
homepage = "https://github.com/roualdes/bridgestan";
license = with lib.licenses; [ cc-by-40 bsd3 ];
maintainers = with lib.maintainers; [ GaetanLepage ];
mainProgram = "bridgestan";
platforms = lib.platforms.all;
};
}

0 comments on commit 0bdb464

Please sign in to comment.