bump
This commit is contained in:
parent
51c8ea3e33
commit
55ce5c70f6
1 changed files with 70 additions and 6 deletions
|
|
@ -1,5 +1,27 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
let
|
||||||
|
python-rembg = pkgs.python310.pkgs.buildPythonPackage rec {
|
||||||
|
pname = "rembg";
|
||||||
|
version = "2.0.50";
|
||||||
|
src = pkgs.python310.pkgs.fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0dgq291bj4w6jkcyz7lvp1vba2nczfnmxa2acl2sqib5p8cpzjvc";
|
||||||
|
};
|
||||||
|
propagatedBuildInputs = with pkgs.python310.pkgs; [
|
||||||
|
numpy
|
||||||
|
pillow
|
||||||
|
onnxruntime
|
||||||
|
opencv4
|
||||||
|
requests
|
||||||
|
];
|
||||||
|
doCheck = false;
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Tool to remove images background";
|
||||||
|
homepage = "https://github.com/danielgatis/rembg";
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
in
|
||||||
{
|
{
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
|
|
@ -23,19 +45,30 @@
|
||||||
libtool
|
libtool
|
||||||
gawk
|
gawk
|
||||||
lazygit
|
lazygit
|
||||||
# Python ecosystem
|
|
||||||
(python310.withPackages (ps: with ps; [
|
(python310.withPackages (ps: with ps; [
|
||||||
virtualenv
|
virtualenv
|
||||||
ipython
|
ipython
|
||||||
|
i3ipc
|
||||||
|
xlib
|
||||||
|
six
|
||||||
numpy
|
numpy
|
||||||
pandas
|
pandas
|
||||||
matplotlib
|
matplotlib
|
||||||
scipy
|
scipy
|
||||||
requests
|
requests
|
||||||
pytorch-bin
|
psutil
|
||||||
torchvision-bin
|
click
|
||||||
torchaudio-bin
|
typer
|
||||||
|
rich
|
||||||
|
pyyaml
|
||||||
|
jq
|
||||||
|
pytz
|
||||||
|
onnxruntime
|
||||||
|
opencv4
|
||||||
|
pillow
|
||||||
|
python-rembg # custom rembg package
|
||||||
]))
|
]))
|
||||||
|
# ML-oriented
|
||||||
(python311.withPackages (ps: with ps; [
|
(python311.withPackages (ps: with ps; [
|
||||||
virtualenv
|
virtualenv
|
||||||
ipython
|
ipython
|
||||||
|
|
@ -45,12 +78,42 @@
|
||||||
pandas
|
pandas
|
||||||
matplotlib
|
matplotlib
|
||||||
scipy
|
scipy
|
||||||
|
scikit-learn
|
||||||
|
seaborn
|
||||||
|
plotly
|
||||||
|
pytorch-bin
|
||||||
|
torchvision-bin
|
||||||
|
torchaudio-bin
|
||||||
|
tensorboard
|
||||||
|
transformers
|
||||||
|
huggingface-hub
|
||||||
|
datasets
|
||||||
|
nltk
|
||||||
|
spacy
|
||||||
|
pillow
|
||||||
|
opencv4
|
||||||
|
xgboost
|
||||||
|
lightgbm
|
||||||
|
optuna
|
||||||
|
joblib
|
||||||
requests
|
requests
|
||||||
|
streamlit
|
||||||
|
gradio
|
||||||
|
polars
|
||||||
|
duckdb
|
||||||
]))
|
]))
|
||||||
uv
|
uv
|
||||||
ruff
|
ruff
|
||||||
black
|
black
|
||||||
# Rust ecosystem with properly configured toolchain
|
mypy
|
||||||
|
htop
|
||||||
|
btop
|
||||||
|
nvtopPackages.full
|
||||||
|
ripgrep
|
||||||
|
fd
|
||||||
|
fzf
|
||||||
|
jq
|
||||||
|
# Rust ecosystem
|
||||||
rustup
|
rustup
|
||||||
rust-analyzer
|
rust-analyzer
|
||||||
cargo-edit
|
cargo-edit
|
||||||
|
|
@ -81,5 +144,6 @@
|
||||||
ugrep
|
ugrep
|
||||||
unzip
|
unzip
|
||||||
starship
|
starship
|
||||||
|
flameshot
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue