stocproc/flake.nix

19 lines
463 B
Nix
Raw Permalink Normal View History

2021-12-07 17:34:15 +01:00
{
description = "Generate continuous time stationary stochastic processes from a given auto correlation function.";
2021-12-09 12:14:14 +01:00
2021-12-07 17:34:15 +01:00
inputs = {
2021-12-09 12:14:14 +01:00
utils.url = "github:vale981/hiro-flake-utils";
2021-12-07 17:34:15 +01:00
nixpkgs.url = "nixpkgs/nixos-unstable";
};
2021-12-09 14:47:19 +01:00
outputs = { self, utils, nixpkgs, ... }:
(utils.lib.poetry2nixWrapper nixpkgs {
2021-12-09 14:42:37 +01:00
name = "stocproc";
2022-01-13 13:53:13 +01:00
shellPackages = pkgs: with pkgs; [ pyright ];
2021-12-09 12:14:14 +01:00
poetryArgs = {
projectDir = ./.;
};
});
2021-12-07 17:34:15 +01:00
}