depot/third_party/nixpkgs/pkgs/development/python-modules/pymatting/default.nix
Default email 60f07311b9 Project import generated by Copybara.
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
2024-02-06 17:22:34 -08:00

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 ];
};
}