auto format

This commit is contained in:
alsaiduq-lab 2025-03-28 10:47:44 -06:00
parent d9746c34ae
commit 945140014b
2 changed files with 33 additions and 30 deletions

View file

@ -1,12 +1,12 @@
{ lib, {
lib,
python311Packages, python311Packages,
fetchPypi, fetchPypi,
stdenv, stdenv,
makeWrapper, makeWrapper,
cmake, cmake,
pkg-config pkg-config,
}: }:
python311Packages.buildPythonPackage rec { python311Packages.buildPythonPackage rec {
pname = "opencv-python-headless"; pname = "opencv-python-headless";
version = "4.11.0.86"; version = "4.11.0.86";

View file

@ -1,8 +1,9 @@
{ lib, {
lib,
python311Packages, python311Packages,
fetchPypi, fetchPypi,
python-pymatting, python-pymatting,
python-opencv-headless python-opencv-headless,
}: }:
python311Packages.buildPythonPackage rec { python311Packages.buildPythonPackage rec {
pname = "rembg"; pname = "rembg";
@ -16,7 +17,8 @@ python311Packages.buildPythonPackage rec {
poetry-core poetry-core
setuptools setuptools
]; ];
propagatedBuildInputs = with python311Packages; [ propagatedBuildInputs = with python311Packages;
[
onnxruntime onnxruntime
pillow pillow
pooch pooch
@ -25,7 +27,8 @@ python311Packages.buildPythonPackage rec {
tqdm tqdm
aiohttp aiohttp
pytorch-bin pytorch-bin
] ++ [ ]
++ [
python-opencv-headless python-opencv-headless
python-pymatting python-pymatting
]; ];