nixpkgs/pkgs/development/python-modules/pims/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

58 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, imageio
, numpy
, pytestCheckHook
, pythonOlder
, scikitimage
, slicerator
}:
buildPythonPackage rec {
pname = "pims";
version = "0.6.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "soft-matter";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-QdllA1QTSJ8vWaSJ0XoUanX53sb4RaOmdXBCFEsoWMU=";
};
propagatedBuildInputs = [
slicerator
imageio
numpy
];
nativeCheckInputs = [
pytestCheckHook
scikitimage
];
pythonImportsCheck = [
"pims"
];
pytestFlagsArray = [
"-W"
"ignore::DeprecationWarning"
];
disabledTests = [
# NotImplementedError: Do not know how to deal with infinite readers
"TestVideo_ImageIO"
];
meta = with lib; {
description = "Python Image Sequence: Load video and sequential images in many formats with a simple, consistent interface";
homepage = "https://github.com/soft-matter/pims";
license = licenses.bsd3;
maintainers = with maintainers; [ costrouc ];
};
}