1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, slicerator
5, scikitimage
6, six
7, numpy
8, tifffile
9, nose
10}:
11
12buildPythonPackage rec {
13 version = "0.4.1";
14 pname = "PIMS";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "6a53a155e900b44e71127a1e1fccbfbaed7eec3c2b52497c40c23a05f334c9dd";
19 };
20
21 checkInputs = [ nose ];
22 propagatedBuildInputs = [ slicerator six numpy tifffile scikitimage ];
23
24 # not everything packaged with pypi release
25 doCheck = false;
26
27 meta = with stdenv.lib; {
28 homepage = https://github.com/soft-matter/pims;
29 description = "Python Image Sequence: Load video and sequential images in many formats with a simple, consistent interface";
30 license = licenses.bsdOriginal;
31 maintainers = [ maintainers.costrouc ];
32 };
33}