60f07311b9
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, numba
|
|
, numpy
|
|
, pillow
|
|
, pytestCheckHook
|
|
, scipy
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pymatting";
|
|
version = "1.1.10";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pymatting";
|
|
repo = "pymatting";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-wHCTqcBvVN/pTXH3iW57DPpMEsnehutRQB5NaugS6Zs=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
numba
|
|
numpy
|
|
pillow
|
|
scipy
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"pymatting"
|
|
];
|
|
|
|
disabledTests = [
|
|
# no access to input data set
|
|
# see: https://github.com/pymatting/pymatting/blob/master/tests/download_images.py
|
|
"test_alpha"
|
|
"test_laplacians"
|
|
"test_preconditioners"
|
|
"test_lkm"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A Python library for alpha matting";
|
|
homepage = "https://github.com/pymatting/pymatting";
|
|
changelog = "https://github.com/pymatting/pymatting/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ blaggacao ];
|
|
};
|
|
}
|
|
|