Add fastf1 python dependency

This commit is contained in:
2024-09-22 22:00:38 +02:00
parent b4c459ffe7
commit 2e685ed646

164
flake.nix
View File

@ -5,19 +5,81 @@
inputs.flake-utils.url = "github:numtide/flake-utils"; inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.devshell.url = "github:numtide/devshell"; inputs.devshell.url = "github:numtide/devshell";
outputs = { self, nixpkgs, flake-utils, devshell }: outputs = {
flake-utils.lib.eachDefaultSystem (system: self,
let nixpkgs,
pkgs = import nixpkgs { flake-utils,
inherit system; devshell,
config.allowUnfree = true; }:
overlays = [ devshell.overlays.default ]; flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
overlays = [devshell.overlays.default];
};
timple = pkgs.python311Packages.buildPythonPackage rec {
pname = "timple";
version = "0.1.8";
src = pkgs.python311Packages.fetchPypi {
inherit pname version;
hash = "sha256-u8EgMA8BA6OpPlSg0ASRxLcIcv5psRIEcBpIicagXw8=";
}; };
myPython = pkgs.python311.withPackages (p: with p; [ doCheck = false;
pyproject = false;
# Build time deps
nativeBuildInputs = with pkgs.python311Packages; [
setuptools
];
# Run time deps
dependencies = with pkgs.python311Packages; [
matplotlib
numpy
];
};
fastf1 = pkgs.python311Packages.buildPythonPackage rec {
pname = "fastf1";
version = "3.4.0";
src = pkgs.python311Packages.fetchPypi {
inherit pname version;
hash = "sha256-rCjJaM0W2m9Yk3dhHkMOdIqPiKtVqoXuELBasmA9ybA=";
};
doCheck = false;
pyproject = true;
# Build time deps
nativeBuildInputs = with pkgs.python311Packages; [
hatchling
hatch-vcs
];
# Run time deps
dependencies = with pkgs.python311Packages; [
matplotlib
numpy
pandas
python-dateutil
requests
requests-cache
scipy
rapidfuzz
websockets
timple
];
};
myPython = pkgs.python311.withPackages (p:
with p; [
# Basic # Basic
rich rich
numpy
# Web # Web
flask flask
@ -25,44 +87,58 @@
sqlalchemy sqlalchemy
requests requests
# Test
pytest pytest
fastf1
# TODO: For some reason, listing those under fastf1.dependencies doesn't work???
matplotlib
numpy
pandas
python-dateutil
requests-cache
scipy
rapidfuzz
websockets
timple
]); ]);
in { in {
devShell = pkgs.devshell.mkShell { devShell = pkgs.devshell.mkShell {
name = "Formula10"; name = "Formula10";
packages = with pkgs; [ packages = with pkgs; [
myPython myPython
nodejs_21 nodejs_21
nodePackages.sass nodePackages.sass
nodePackages.postcss-cli nodePackages.postcss-cli
nodePackages.autoprefixer nodePackages.autoprefixer
]; ];
# Use $1 for positional args # Use $1 for positional args
commands = [ commands = [
{ {
name = "vscode"; name = "vscode";
help = "Launch VSCode"; help = "Launch VSCode";
command = "code . &>/dev/null &"; command = "code . &>/dev/null &";
} }
{ {
name = "pycharm"; name = "pycharm";
help = "Launch PyCharm Professional"; help = "Launch PyCharm Professional";
command = "pycharm-professional . &>/dev/null &"; command = "pycharm-professional . &>/dev/null &";
} }
{ {
name = "db"; name = "db";
help = "Launch SQLiteBrowser"; help = "Launch SQLiteBrowser";
command = "sqlitebrowser ./instance/formula10.db &>/dev/null &"; command = "sqlitebrowser ./instance/formula10.db &>/dev/null &";
} }
{ {
name = "api"; name = "api";
help = "Launch Hoppscotch in Google Chrome"; help = "Launch Hoppscotch in Google Chrome";
command = "google-chrome-stable https://hoppscotch.io &>/dev/null &"; command = "google-chrome-stable https://hoppscotch.io &>/dev/null &";
} }
]; ];
}; };
}); });
} }