version bump to 25.05

This commit is contained in:
alsaiduq-lab 2025-05-24 18:05:54 -06:00
parent b22792614e
commit f749641e68
22 changed files with 254 additions and 576 deletions

View file

@ -7,33 +7,28 @@ python311Packages.buildPythonPackage rec {
pname = "pymatting";
version = "1.1.13";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-LNt8S++s3e9Netwt6ONKJy3mOdYIrlwKCGE9+kJTgQE=";
};
nativeBuildInputs = with python311Packages; [
setuptools
poetry-core
];
propagatedBuildInputs = with python311Packages; [
numpy
scipy
pillow
numba
];
buildInputs = [
];
doCheck = false;
meta = with lib; {
description = "A library for alpha matting";
homepage = "https://github.com/pymatting/pymatting";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; ["Cobray"];
maintainers = ["Cobray"];
};
}