mirror of
https://github.com/vale981/stocproc
synced 2025-03-04 09:11:41 -05:00
18 lines
463 B
Nix
18 lines
463 B
Nix
{
|
|
description = "Generate continuous time stationary stochastic processes from a given auto correlation function.";
|
|
|
|
|
|
inputs = {
|
|
utils.url = "github:vale981/hiro-flake-utils";
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs = { self, utils, nixpkgs, ... }:
|
|
(utils.lib.poetry2nixWrapper nixpkgs {
|
|
name = "stocproc";
|
|
shellPackages = pkgs: with pkgs; [ pyright ];
|
|
poetryArgs = {
|
|
projectDir = ./.;
|
|
};
|
|
});
|
|
}
|