nixpkgs/pkgs/development/python-modules/pims/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.0 KiB
Nix
Raw Normal View History

{ lib
2018-09-13 21:41:13 +01:00
, buildPythonPackage
, fetchFromGitHub
, imageio
2018-09-13 21:41:13 +01:00
, numpy
, pytestCheckHook
, pythonOlder
, scikitimage
, slicerator
2018-09-13 21:41:13 +01:00
}:
buildPythonPackage rec {
pname = "pims";
2022-05-02 11:08:41 +01:00
version = "0.6.0";
format = "setuptools";
disabled = pythonOlder "3.7";
2018-09-13 21:41:13 +01:00
src = fetchFromGitHub {
owner = "soft-matter";
repo = pname;
rev = "v${version}";
hash = "sha256-F4UWbD9fOfvaZwYcY1l7XOzVKZyqqTGTqVJoNPo1Ozg=";
2018-09-13 21:41:13 +01:00
};
propagatedBuildInputs = [
slicerator
imageio
numpy
];
2018-09-13 21:41:13 +01:00
checkInputs = [
pytestCheckHook
scikitimage
];
pythonImportsCheck = [
"pims"
];
pytestFlagsArray = [
"-W"
"ignore::DeprecationWarning"
];
disabledTests = [
# NotImplementedError: Do not know how to deal with infinite readers
"TestVideo_ImageIO"
];
2018-09-13 21:41:13 +01:00
meta = with lib; {
2018-09-13 21:41:13 +01:00
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 ];
2018-09-13 21:41:13 +01:00
};
}