depot/third_party/nixpkgs/pkgs/development/python-modules/pymatting/default.nix

55 lines
1.1 KiB
Nix
Raw Normal View History

{
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 = "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 ];
};
}